Files
basketball-scoreboard/src-tauri/tauri.conf.json
2025-06-20 15:45:40 -04:00

48 lines
1016 B
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "basketball-scoreboard",
"version": "0.1.0",
"identifier": "dev.altaiar.bss2",
"build": {
"beforeDevCommand": "yarn dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "yarn build",
"frontendDist": "../dist"
},
"app": {
"windows": [
{
"title": "Scoreboard",
"label": "scoreboard",
"url": "/scoreboard",
"fullscreen": true
},
{
"title": "Control Panel",
"label": "control-panel",
"url": "/control-panel",
"width": 640,
"height": 240,
"closable": false,
"resizable": true,
"center": true,
"parent": "scoreboard"
}
],
"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"
]
}
}