-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathvue.config.js
More file actions
33 lines (33 loc) · 731 Bytes
/
vue.config.js
File metadata and controls
33 lines (33 loc) · 731 Bytes
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
module.exports = {
pluginOptions: {
electronBuilder: {
nodeIntegration: true,
builderOptions: {
appId: 'com.chendm.easycode-javascript.1.0.0',
productName: 'EasyCode',
copyright: 'Copyright © 2020',
directories: {
output: './dist'
},
extraResources: ['./static/**'],
buildVersion: '1.0.0',
nsis: {
createDesktopShortcut: true,
createStartMenuShortcut: true
},
win: {
icon: 'favicon.ico',
target: [
{
target: 'nsis',
arch: [
'x64',
'ia32'
]
}
]
}
}
}
}
}