Files
roll-call/src-tauri/tauri.conf.json
T
2026-06-16 19:15:56 +08:00

39 lines
809 B
JSON

{
"$schema": "../node_modules/@tauri-apps/cli/config.schema.json",
"productName": "Roll Call",
"version": "0.1.1",
"identifier": "dev.zhhe.rollcall",
"build": {
"frontendDist": "../out",
"devUrl": "http://localhost:3000",
"beforeDevCommand": "npm run dev",
"beforeBuildCommand": "npm run build"
},
"app": {
"windows": [
{
"title": "Roll Call",
"width": 1204,
"height": 685,
"resizable": true,
"fullscreen": false,
"decorations": false,
"shadow": true,
"transparent": true
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/icon.ico"
],
"android": {
"debugApplicationIdSuffix": ".debug"
}
}
}