diff --git a/src-tauri/capabilities/desktop.json b/src-tauri/capabilities/desktop.json index 1c86456f5..8244acab7 100644 --- a/src-tauri/capabilities/desktop.json +++ b/src-tauri/capabilities/desktop.json @@ -21,10 +21,16 @@ "path": "**" }, { - "path": "**/.minecraft" + "path": "**/.*" }, { - "path": "**/.minecraft/**" + "path": "**/.*/**" + }, + { + "path": "**/.*/**/.*" + }, + { + "path": "**/.*/**/.*/**" } ] }, diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 56c66611f..eb49233ff 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -53,7 +53,8 @@ "enable": true, "scope": [ "**", - "**/.minecraft/**" + "**/.*/**", + "**/.*/**/.*/**" ] } }