-
Notifications
You must be signed in to change notification settings - Fork 3
/
vue.config.js
32 lines (32 loc) · 981 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
module.exports = {
pluginOptions: {
electronBuilder: {
preload: "./src/preload.js",
appId: 'com.sosolimited.mit-illuminations',
extendInfo: {
NSMicrophoneUsageDescription: "Some shows require microphone input.",
},
builderOptions: {
productName: "Illuminations by MIT",
extraResources: ["./extraResources/**", "./LICENSE"],
afterSign: "tools/notarize.js",
/*win: {
target: ['zip']
},*/
mac: {
hardenedRuntime: true,
gatekeeperAssess: false,
entitlements: "build/entitlements.mac.plist",
entitlementsInherit: "build/entitlements.mac.plist",
target: ['dmg']
},
dmg: {
sign: false, // signing DMGs without notarizing can cause errors
writeUpdateInfo: false // disable blockmap generation to save time
}
},
nodeIntegration: true,
externals: ['serialport']
},
},
};