forked from FTBTeam/FTB-App
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvue.config.js
38 lines (38 loc) · 1.25 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
module.exports = {
pluginOptions: {
electronBuilder: {
builderOptions: {
generateUpdatesFilesForAllChannels: true,
productName: "ftbapp",
appId: "com.feedthebeast.Launcher",
mac: {
// #TODO https://kilianvalkhof.com/2019/electron/notarizing-your-electron-application/
identity: 'null',
hardenedRuntime : true,
gatekeeperAssess: false,
entitlements: "build/entitlements.mac.plist",
entitlementsInherit: "build/entitlements.mac.plist",
target: [
"dir"
]
},
win: {
target: [
"portable"
],
artifactName: "${productName}.${ext}"
},
linux: {
target: [
"AppImage"
],
category: "Game",
artifactName: "${productName}.${ext}"
},
directories: {
output: "release"
}
}
}
}
};