mirror of
https://github.com/hex248/sprint.git
synced 2026-02-07 18:23:03 +00:00
33 lines
793 B
JSON
33 lines
793 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/app",
|
|
"beforeBuildCommand": "bun run build",
|
|
"frontendDist": "../dist"
|
|
},
|
|
"app": {
|
|
"windows": [
|
|
{
|
|
"title": "Issue Project Manager",
|
|
"width": 1600,
|
|
"height": 900,
|
|
"minWidth": 640,
|
|
"minHeight": 360,
|
|
"decorations": false,
|
|
"url": "/app"
|
|
}
|
|
],
|
|
"security": {
|
|
"csp": null
|
|
}
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"targets": "all"
|
|
}
|
|
}
|