Fix loading icons on Linux

On Linux URLs to app resources start with tauri://localhost instead of
https://tauri.localhost
This commit is contained in:
fnrir
2023-07-05 10:18:28 +02:00
parent 74c6dd6792
commit dbbbb6603d

View File

@@ -53,7 +53,7 @@
} }
}, },
"security": { "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": { "updater": {
"active": false, "active": false,