diff options
Diffstat (limited to 'src-tauri/capabilities/default.json')
| -rw-r--r-- | src-tauri/capabilities/default.json | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/src-tauri/capabilities/default.json b/src-tauri/capabilities/default.json index ea3fd7b..1b67261 100644 --- a/src-tauri/capabilities/default.json +++ b/src-tauri/capabilities/default.json @@ -3,6 +3,14 @@ "identifier": "default", "description": "Default capabilities for the DropOut launcher", "windows": ["main"], + "remote": { + "urls": [ + "http://127.0.0.1:5173", + "http://127.0.0.1:5173/*", + "http://localhost:5173", + "http://localhost:5173/*" + ] + }, "permissions": [ "core:default", "core:event:default", @@ -20,12 +28,12 @@ "allow": [{ "path": "**" }] }, { - "identifier": "fs:allow-exists", - "allow": [{ "path": "**" }] + "identifier": "fs:allow-exists", + "allow": [{ "path": "**" }] }, { - "identifier": "fs:allow-write-text-file", - "allow": [{ "path": "**" }] + "identifier": "fs:allow-write-text-file", + "allow": [{ "path": "**" }] } ] } |