estim_control/src-tauri/tauri.conf.json
2025-02-26 05:39:36 +08:00

39 lines
813 B
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "estim",
"version": "0.1.0",
"identifier": "net.archgrid.app.estim",
"build": {
"beforeDevCommand": "deno task dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "deno task build",
"frontendDist": "../dist"
},
"app": {
"windows": [
{
"title": "estim",
"width": 1200,
"height": 800,
"resizable": false,
"hiddenTitle": true,
"titleBarStyle": "Overlay",
"theme": "Dark"
}
],
"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"
]
}
}