fix(tauri): correct window config and CSP\n\n- Set titleBarStyle to "Transparent" to match v2 schema\n- Add ipc: and http://ipc.localhost to connect-src for IPC\n- Add label: "main" for the primary window\n

This commit is contained in:
Jason
2025-09-05 10:19:14 +08:00
parent 30a441d9ec
commit 1d9fb7bf26

View File

@@ -12,6 +12,7 @@
"app": { "app": {
"windows": [ "windows": [
{ {
"label": "main",
"title": "", "title": "",
"width": 900, "width": 900,
"height": 650, "height": 650,
@@ -23,7 +24,7 @@
} }
], ],
"security": { "security": {
"csp": "default-src 'self'; img-src 'self' data:; script-src 'self'; style-src 'self' 'unsafe-inline'; connect-src 'self' https: http:" "csp": "default-src 'self'; img-src 'self' data:; script-src 'self'; style-src 'self' 'unsafe-inline'; connect-src 'self' ipc: http://ipc.localhost https: http:"
} }
}, },
"bundle": { "bundle": {