aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHimbeer <himbeer@disroot.org>2024-08-08 14:50:54 +0200
committerHimbeer <himbeer@disroot.org>2024-08-08 14:50:54 +0200
commit5e8c47b85cea5ddee4c922c27e43a1e6bb461d18 (patch)
tree02beacee5e8257028736613072fd38672973061e
parentda54b74c3dad699d6bfe93e69c4902d448c14164 (diff)
Request HTTP permissions (relevant on macOS)
-rw-r--r--src-tauri/tauri.conf.json17
1 files changed, 12 insertions, 5 deletions
diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json
index a3872ca..90583f9 100644
--- a/src-tauri/tauri.conf.json
+++ b/src-tauri/tauri.conf.json
@@ -15,11 +15,18 @@
"all": false,
"open": true
},
- "dialog": {
- "all": false,
- "ask": true,
- "message": true
- }
+ "dialog": {
+ "all": false,
+ "ask": true,
+ "message": true
+ },
+ "http": {
+ "scope": [
+ "https://*"
+ ],
+ "all": true,
+ "request": true
+ }
},
"windows": [
{