foxus/frontend/src-tauri/tauri.conf.json

76 lines
1.6 KiB
JSON

{
"build": {
"beforeDevCommand": "npm run dev",
"beforeBuildCommand": "npm run build",
"devPath": "http://localhost:1420",
"distDir": "../dist",
"withGlobalTauri": false
},
"package": {
"productName": "Foxus",
"version": "1.0.0"
},
"tauri": {
"allowlist": {
"all": false,
"shell": {
"all": false,
"open": true
},
"dialog": {
"all": false,
"open": true,
"save": true
},
"fs": {
"all": false,
"readFile": true,
"writeFile": true,
"readDir": true,
"createDir": true,
"removeFile": true,
"exists": true,
"scope": ["$HOME/**", "$DESKTOP/**", "$DOCUMENT/**", "$DOWNLOAD/**"]
},
"path": {
"all": true
},
"http": {
"all": false,
"request": true,
"scope": ["http://localhost:8000/**", "http://127.0.0.1:8000/**"]
}
},
"bundle": {
"active": true,
"targets": "all",
"identifier": "com.foxus.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": "Foxus - Local AI Code Assistant",
"width": 1400,
"height": 900,
"minWidth": 800,
"minHeight": 600,
"center": true,
"decorations": true,
"transparent": false,
"alwaysOnTop": false,
"skipTaskbar": false
}
]
}
}