Files
sprint/packages/frontend/src-tauri/tauri.conf.json
2026-01-21 17:47:04 +00:00

33 lines
646 B
JSON

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