tauri-android-tax/src-tauri/tauri.conf.json
2026-07-08 18:01:27 +08:00

26 lines
554 B
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "发票助手",
"version": "0.1.0",
"identifier": "com.example.invoice",
"build": {
"frontendDist": "../dist",
"devUrl": "http://localhost:1420",
"beforeDevCommand": "npm run dev",
"beforeBuildCommand": "npm run build"
},
"app": {
"windows": [
{ "title": "发票助手", "width": 400, "height": 720 }
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": "all",
"icon": ["icons/icon.png"]
}
}