-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathvue.config.js
More file actions
30 lines (30 loc) · 992 Bytes
/
vue.config.js
File metadata and controls
30 lines (30 loc) · 992 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
module.exports = {
pluginOptions: {
electronBuilder: {
builderOptions: {
// options placed here will be merged with default configuration and passed to electron-builder
"productName": "ESP32 Flasher esptool.py GUI",
"appId": "com.bauertronix.esp32flasher",
"win": {
"target": ["portable"],
"icon": "build/flash.ico"
},
"portable": {
"artifactName": "esp32_flasher_esptool_${version}.exe"
},
"linux": {
"target": ["appImage"],
"icon": "build/flash.png"
},
"appImage": {
"artifactName": "esp32_flasher_esptool_${version}.AppImage"
}
// "directories": {
// "output": "electron/output",
// "app": "electron/app",
// "buildResources": "electron/buildResources"
// }
}
}
}
}