Files
launcher/src-tauri/tauri.conf.json
2025-07-17 15:07:27 -07:00

38 lines
771 B
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "berry-manager",
"version": "1.0.0",
"identifier": "xyz.lncvrt.berrydash-manager",
"build": {
"beforeDevCommand": "yarn dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "yarn build",
"frontendDist": "../dist"
},
"app": {
"windows": [
{
"title": "Berry Dash Manager",
"width": 1000,
"height": 600,
"resizable": false,
"maximizable": false
}
],
"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"
]
}
}