-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvue.config.js
More file actions
29 lines (29 loc) · 771 Bytes
/
Copy pathvue.config.js
File metadata and controls
29 lines (29 loc) · 771 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
module.exports = {
pluginOptions: {
electronBuilder: {
nodeIntegration: false,
preload: "src/preload.js",
builderOptions: {
appId: "com.thepixeldeveloper.tunnelboringmasshine",
productName: "Tunnel Boring MaSSHine",
copyright: "Copyright © 2020 Mathew Davies",
afterSign: "electron-builder-notarize",
linux: {
target: "AppImage"
},
mac: {
hardenedRuntime: true,
category: "public.app-category.developer-tools",
entitlements:
"./node_modules/electron-builder-notarize/entitlements.mac.inherit.plist",
},
},
},
},
pages: {
index: {
entry: "src/main.js",
title: "Tunnel Boring MaSSHine",
},
},
};