From dbbbb6603dd1385872a23f64c7820f731345cac0 Mon Sep 17 00:00:00 2001 From: fnrir Date: Wed, 5 Jul 2023 10:18:28 +0200 Subject: [PATCH] Fix loading icons on Linux On Linux URLs to app resources start with tauri://localhost instead of https://tauri.localhost --- src-tauri/tauri.conf.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index d1c5b20..0c94cd5 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -53,7 +53,7 @@ } }, "security": { - "csp": "default-src 'self'; img-src 'self'; img-src https://* asset: https://asset.localhost; media-src https://* asset: https://asset.localhost; style-src-elem https://* asset https://asset.localhost; script-src-elem https://* asset https://asset.localhost;" + "csp": "default-src 'self'; img-src 'self' https://* asset: https://asset.localhost tauri://localhost; media-src https://* asset: https://asset.localhost tauri://localhost; style-src-elem https://* asset: https://asset.localhost tauri://localhost; script-src-elem https://* asset: https://asset.localhost tauri://localhost;" }, "updater": { "active": false,