From 3226fe518910be59624987d51a599c9df406d19c Mon Sep 17 00:00:00 2001 From: ByteAtATime Date: Thu, 19 Jun 2025 21:14:25 -0700 Subject: [PATCH] fix: update assetProtocol scope configuration in tauri.conf.json --- src-tauri/tauri.conf.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 1d8e39d..3593d2d 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -29,7 +29,10 @@ "csp": "http://asset.localhost", "assetProtocol": { "enable": true, - "scope": ["**"] + "scope": { + "requireLiteralLeadingDot": false, + "allow": ["**/*"] + } } } },