52 lines
926 B
JSON
52 lines
926 B
JSON
{
|
|
"appId": "com.erp.client",
|
|
"productName": "erpClient",
|
|
"asar": true,
|
|
"directories": {
|
|
"output": "dist"
|
|
},
|
|
"publish": {
|
|
"provider": "generic",
|
|
"url": "http://192.168.1.89:8080/static/updates/"
|
|
},
|
|
"nsis": {
|
|
"oneClick": false,
|
|
"perMachine": false,
|
|
"allowToChangeInstallationDirectory": true,
|
|
"shortcutName": "erpClient"
|
|
},
|
|
"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"
|
|
],
|
|
"extraResources": [
|
|
{
|
|
"from": "update-helper.bat",
|
|
"to": "../update-helper.bat"
|
|
}
|
|
]
|
|
}
|