-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvue.config.js
28 lines (28 loc) · 944 Bytes
/
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
module.exports = {
pluginOptions: {
electronBuilder: {
nodeIntegration: true,
builderOptions: {
appId: "com.github.tran4f",
win: {
icon: "./public/favicon.ico",
target: [{
target: "nsis",
arch: ["x64"]
}]
},
nsis: {
oneClick: false,
allowElevation: true,
allowToChangeInstallationDirectory: true,
installerIcon: "./public/favicon.ico",
uninstallerIcon: "./public/favicon.ico",
installerHeaderIcon: "./public/favicon.ico",
createDesktopShortcut: true,
createStartMenuShortcut: true,
shortcutName: "favicon",
}
}
}
}
}