26 lines
554 B
JSON
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"]
|
|
}
|
|
}
|