-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvue.config.js
37 lines (37 loc) · 1.32 KB
/
vue.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
module.exports = {
// publicPath: "/app/",
pluginOptions: {
electronBuilder: {
nodeIntegration: true,
builderOptions: {
"appId": "com.cilent.app.translate.desktop",
"productName": "Translate Desktop",
"directories": {
"output": "./dist_electron"
},
"win": {
"icon": "./public/[email protected]"
},
"mac": {
"icon": "./public/[email protected]"
},
"linux": {
"icon": "./public/[email protected]"
},
"nsis": {
"oneClick": false,
"guid": "78350E37-7019-4BEA-9938-7155D3B382A9",
"perMachine": true,
"allowElevation": true,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "Translate Desktop"
}
}
}
}
}