Files
sprint/packages/frontend/src-tauri/tauri.conf.json
2025-12-31 18:08:47 +00:00

32 lines
758 B
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "issue",
"version": "0.1.0",
"identifier": "com.hex248.issue",
"build": {
"beforeDevCommand": "bun run dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "bun run build",
"frontendDist": "../dist"
},
"app": {
"windows": [
{
"title": "Issue Project Manager",
"width": 1600,
"height": 900,
"minWidth": 640,
"minHeight": 360,
"decorations": false
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": "all"
}
}