Files
spary/src-tauri/tauri.conf.json
selcarpa 2a18061700 feat(app): Added sidebar navigation and new page routes
- Added Nodes and Settings page routes
- Updated component import paths
- Imported database connection dependencies
2025-10-10 09:09:19 +08:00

41 lines
767 B
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "spary",
"version": "0.1.0",
"identifier": "com.tain.spary",
"build": {
"beforeDevCommand": "yarn dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "yarn build",
"frontendDist": "../dist"
},
"app": {
"windows": [
{
"title": "spary",
"width": 800,
"height": 600
},
{
"title": "addGroup",
"width": 800,
"height": 600
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
}
}