-
Notifications
You must be signed in to change notification settings - Fork 1
/
vue.config.js
40 lines (40 loc) · 1.17 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
38
39
40
module.exports = {
pluginOptions: {
electronBuilder: {
externals: ['serialport'],
builderOptions:{
productName: "COOPER Quick",
"appId": "com.electron.hardwario-cooper-quick",
"artifactName": "cooper-quick-${version}-${os}-${arch}.${ext}",
"publish": null,
"mac": {
"artifactName": "cooper-quick-${version}-macos-${arch}.${ext}",
"category": "public.app-category.utilities"
},
"win": {
"artifactName": "cooper-quick-${version}-windows-${arch}.${ext}",
"target": [
"nsis",
"portable"
],
"publisherName": "HARDWARIO s.r.o."
},
"linux": {
"artifactName": "cooper-quick-${version}-linux-${arch}.${ext}",
"target": [
"deb",
"appImage",
"snap"
],
"category": "Utility"
},
"appImage": {
"systemIntegration": "doNotAsk"
},
"nsis": {
"artifactName": "cooper-quick-${version}-${os}-setup-${arch}.${ext}"
}
}
}
}
}