Files
heartbeatcat/src-tauri/tauri.conf.json
2024-07-16 21:14:07 +08:00

53 lines
1000 B
JSON

{
"build": {
"beforeDevCommand": "pnpm dev",
"beforeBuildCommand": "pnpm build",
"devPath": "http://localhost:1420",
"distDir": "../dist"
},
"package": {
"productName": "heartbeat-cat",
"version": "0.0.1"
},
"tauri": {
"allowlist": {
"all": false,
"shell": {
"all": false,
"open": true
},
"window": {
"all": false,
"close": true,
"hide": true,
"show": true,
"maximize": true,
"minimize": true,
"unmaximize": true,
"unminimize": true,
"startDragging": true
}
},
"windows": [
{
"title": "Heartbeat Cat",
"minWidth": 800,
"minHeight": 500,
"width": 800,
"height": 500
}
],
"security": {
"csp": null
},
"bundle": {
"active": true,
"targets": "all",
"identifier": "ga.bh8.heartbeat-cat",
"icon": [
"icons/icon.ico"
]
}
}
}