From 4196952178cdc2a87fc560e1701cb1028b93b53f Mon Sep 17 00:00:00 2001 From: Dmytro Kondakov Date: Sun, 13 Apr 2025 21:28:14 +0200 Subject: [PATCH] feat(capabilities): add localhost URL to default permissions - Updated the default capabilities configuration to allow access to http://localhost:3040 in addition to the existing https://haystack.johncosta.tech URL. --- frontend/src-tauri/capabilities/default.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/frontend/src-tauri/capabilities/default.json b/frontend/src-tauri/capabilities/default.json index d97ab54..6c95be9 100644 --- a/frontend/src-tauri/capabilities/default.json +++ b/frontend/src-tauri/capabilities/default.json @@ -15,7 +15,14 @@ "http:default", { "identifier": "http:default", - "allow": [{ "url": "https://haystack.johncosta.tech" }] + "allow": [ + { + "url": "https://haystack.johncosta.tech" + }, + { + "url": "http://localhost:3040" + } + ] } ] }