Here's my tauri.conf.json
{
"build": {
"beforeDevCommand": "npm run dev",
"beforeBuildCommand": "npm run build",
"devPath": "http://localhost:1420",
"distDir": "../dist"
},
"package": {
"productName": "Intentio",
"version": "1.1.0"
},
"tauri": {
"allowlist": {
"protocol": {
"asset": true,
"assetScope": [
"$RESOURCE/*",
"$APPDATA/*"
]
},
"all": true,
"fs": {
"all": false,
"readFile": true,
"writeFile": true,
"readDir": true,
"copyFile": true,
"createDir": true,
"scope": [
"$APP/*",
"$APP",
"$RESOURCE",
"$RESOURCE/*"
]
}
},
"bundle": {
"active": true,
"category": "DeveloperTool",
"copyright": "",
"deb": {
"depends": []
},
"externalBin": [],
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/[email protected]",
"icons/icon.icns",
"icons/icon.ico"
],
"identifier": "intentio.app",
"longDescription": "A pomodoro timer.",
"macOS": {
"entitlements": null,
"exceptionDomain": "",
"frameworks": [],
"providerShortName": null,
"signingIdentity": null
},
"resources": [
"./assets/audio/*"
],
"shortDescription": "A pomodoro timer.",
"targets": "all",
"windows": {
"certificateThumbprint": null,
"digestAlgorithm": "sha256",
"timestampUrl": ""
}
},
...
}
}