43 lines
859 B
JSON
43 lines
859 B
JSON
{
|
|
"$schema": "../node_modules/@tauri-apps/cli/config.schema.json",
|
|
"productName": "Roll Call",
|
|
"version": "0.1.0",
|
|
"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
|
|
}
|
|
],
|
|
"security": {
|
|
"csp": null
|
|
}
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"targets": "all",
|
|
"icon": [
|
|
"icons/icon.ico"
|
|
],
|
|
"windows": {
|
|
"webviewInstallMode": {
|
|
"type": "fixedRuntime",
|
|
"path": "./webview2/"
|
|
|
|
}
|
|
},
|
|
"android": {
|
|
"debugApplicationIdSuffix": ".debug"
|
|
}
|
|
}
|
|
} |