-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvue.config.js
35 lines (34 loc) · 997 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
29
30
31
32
33
34
35
module.exports = {
pluginOptions: {
electronBuilder: {
nodeIntegration: true,
builderOptions: {
productName: "SpinShare",
appId: "re.spinsha.client",
protocols: {
name: "spinshare-deeplink",
schemes: [
"spinshare",
]
},
win: {
icon: "build/icons_AppIcon.ico"
},
nsis: {
oneClick: false,
allowToChangeInstallationDirectory: true
},
mac: {
category: "public.app-category.music-games",
target: "dmg",
icon: "build/AppIcon.icns"
},
dmg: {
backgroundColor: "#222"
},
appImage: {
}
}
}
}
}