Files
SecurityArc/securearc-gui/tauri.conf.json
2025-12-11 15:40:44 +01:00

63 lines
1.2 KiB
JSON

{
"build": {
"beforeDevCommand": "npm run dev",
"beforeBuildCommand": "npm run build",
"devPath": "http://localhost:1420",
"distDir": "dist"
},
"package": {
"productName": "SecureArc",
"version": "0.1.0"
},
"tauri": {
"allowlist": {
"all": false,
"shell": {
"all": false,
"open": true
},
"fs": {
"all": false,
"readFile": true,
"writeFile": true,
"readDir": true,
"createDir": true,
"removeDir": true,
"removeFile": true,
"scope": [
"$APPDATA/**",
"$DOCUMENT/**",
"$DOWNLOAD/**",
"$DESKTOP/**"
]
},
"dialog": {
"all": true
}
},
"bundle": {
"active": true,
"targets": "all",
"identifier": "com.securearc.app",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
},
"security": {
"csp": null
},
"windows": [
{
"fullscreen": false,
"resizable": true,
"title": "SecureArc",
"width": 800,
"height": 600
}
]
}
}