From 738b9b17ff7fb0435fde4247bea186e34e8d6afc Mon Sep 17 00:00:00 2001 From: hobokenchicken Date: Mon, 20 Jul 2026 13:42:21 -0400 Subject: [PATCH] fix: add unsafe-inline to Tauri script-src CSP --- web/src-tauri/tauri.conf.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src-tauri/tauri.conf.json b/web/src-tauri/tauri.conf.json index e398dfe..6c013dc 100644 --- a/web/src-tauri/tauri.conf.json +++ b/web/src-tauri/tauri.conf.json @@ -23,7 +23,7 @@ } ], "security": { - "csp": "default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' data: https:; connect-src 'self' wss: https:;" + "csp": "default-src 'self'; script-src 'self' 'unsafe-inline'; style-src 'self' 'unsafe-inline'; img-src 'self' data: https:; connect-src 'self' wss: https:;" } }, "bundle": {