From c420c4728c51e2b1420afb23da45d2fb8fb963e3 Mon Sep 17 00:00:00 2001 From: Niko PLP Date: Sat, 19 Aug 2023 07:51:57 +0300 Subject: [PATCH] fix csp --- ngaccount/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ngaccount/src/main.rs b/ngaccount/src/main.rs index 470971d..db72065 100644 --- a/ngaccount/src/main.rs +++ b/ngaccount/src/main.rs @@ -262,7 +262,7 @@ async fn main() -> anyhow::Result<()> { #[cfg(debug_assertions)] "default-src 'self' data:; connect-src ipc: https://ipc.localhost 'self' http://192.168.192.2:3031", #[cfg(not(debug_assertions))] - "default-src 'self' data:; connect-src ipc: https://ipc.localhost 'self'; script-src 'unsafe-inline'", + "default-src 'self' data: 'unsafe-inline'; connect-src ipc: https://ipc.localhost 'self'", ), );