work-order-monitor/src-tauri/tauri.conf.json

42 lines
1.2 KiB
JSON
Raw Normal View History

2026-03-10 14:41:13 +08:00
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "工单系统监测",
2026-03-31 17:08:30 +08:00
"version": "0.2.3",
2026-03-25 10:06:25 +08:00
"identifier": "com.yunpu.workordermonitor",
2026-03-10 14:41:13 +08:00
"build": {
"beforeDevCommand": "pnpm dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "pnpm build",
"frontendDist": "../dist"
},
"app": {
"windows": [
{
"title": "工单系统监测",
"width": 800,
"height": 600
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
2026-03-31 17:08:30 +08:00
"targets": ["nsis"],
2026-03-25 10:06:25 +08:00
"createUpdaterArtifacts": true,
2026-03-31 17:08:30 +08:00
"icon": ["icons/32x32.png", "icons/128x128.png", "icons/128x128@2x.png", "icons/icon.icns", "icons/icon.ico"],
"resources": ["icons/32x32.png", "icons/icon.ico"]
2026-03-25 10:06:25 +08:00
},
"plugins": {
"updater": {
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDY0Q0YxMzNBM0Q5OEU4NEMKUldSTTZKZzlPaFBQWkVXRVdBVHdTdlNvVnZSL2FFQkZtbFpRTzdjNGxHbjJsZ1R5MFRLdkpmYzMK",
2026-03-31 17:08:30 +08:00
"endpoints": ["http://web.nps.yunvip123.cn/work-order-monitor/update.json"],
2026-03-25 10:06:25 +08:00
"dangerousInsecureTransportProtocol": true,
"windows": {
"installMode": "passive"
}
}
2026-03-10 14:41:13 +08:00
}
}