Files
erp_sb/electron-vue-template/electron-builder.json
2025-09-25 18:13:48 +08:00

45 lines
807 B
JSON

{
"appId": "com.erp.client",
"productName": "ERP客户端",
"directories": {
"output": "dist"
},
"publish": {
"provider": "generic",
"url": "http://192.168.1.89:8080/static/updates/"
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true,
"shortcutName": "ERP客户端"
},
"win": {
"target": "nsis",
"icon": "public/icon/icon.png"
},
"linux": {
"target": ["snap"]
},
"files": [
{
"from": "build/main",
"to": "main",
"filter": ["**/*"]
},
{
"from": "build/renderer",
"to": "renderer",
"filter": ["**/*"]
},
{
"from": "src/main/static",
"to": "static",
"filter": ["**/*"]
},
"!build",
"!dist",
"!scripts"
]
}