Files
claudia/src-tauri/tauri.conf.json
2025-06-19 19:24:01 +05:30

42 lines
887 B
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "Claudia",
"version": "0.1.0",
"identifier": "claudia.asterisk.so",
"build": {
"beforeDevCommand": "bun run dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "bun run build",
"frontendDist": "../dist"
},
"app": {
"windows": [
{
"title": "Claudia",
"width": 800,
"height": 600
}
],
"security": {
"csp": null
}
},
"plugins": {
"fs": {
"scope": ["$HOME/**"],
"allow": ["readFile", "writeFile", "readDir", "copyFile", "createDir", "removeDir", "removeFile", "renameFile", "exists"]
}
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
}
}