bugwork-app/src-tauri/tauri.conf.json
2024-07-07 16:46:41 +08:00

35 lines
644 B
JSON

{
"productName": "bugwork.app",
"version": "0.1.0",
"identifier": "net.archgrid.app",
"build": {
"beforeDevCommand": "bun run dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "bun run build",
"frontendDist": "../dist"
},
"app": {
"windows": [
{
"title": "BugWork",
"width": 1200,
"height": 800
}
],
"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"
]
}
}