Skip to content

Commit

Permalink
Merge pull request #1 from Daniere-Mathieu/fix/assetsrights
Browse files Browse the repository at this point in the history
fix(tauri.conf.json): Fix the problem of assets right
  • Loading branch information
Daniere-Mathieu authored Dec 18, 2023
2 parents 66da51d + c595928 commit 16cd96a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "side-project",
"private": true,
"version": "0.0.11",
"version": "0.0.12",
"type": "module",
"scripts": {
"dev": "vite",
Expand All @@ -13,6 +13,7 @@
"dependencies": {
"@tauri-apps/api": "^1.3.0",
"moment": "^2.29.4",
"query-string": "^8.1.0",
"svelte-icons": "^2.1.0"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"package": {
"productName": "side-project",
"version": "0.0.1"
"version": "0.0.12"
},
"tauri": {
"allowlist": {
Expand All @@ -31,7 +31,7 @@
"protocol": {
"all": false,
"asset": true,
"assetScope": ["**"]
"assetScope": { "allow": ["**"], "requireLiteralLeadingDot": false }
}
},
"bundle": {
Expand Down

0 comments on commit 16cd96a

Please sign in to comment.