-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvue.config.js
More file actions
30 lines (30 loc) · 777 Bytes
/
vue.config.js
File metadata and controls
30 lines (30 loc) · 777 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
30
module.exports = {
pages: {
index: "src/renderer/main.ts"
},
pluginOptions: {
electronBuilder: {
nodeIntegration: true,
mainProcessFile: "src/main/index.ts",
mainProcessWatch: ["src/main"],
// Use this to change the entry point of your app's render process. default src/[main|index].[js|ts]
builderOptions: {
productName: "micro-app",
appId: "com.electron.micro-app",
compression: "store",
directories: {
output: "build"
},
// files: ["dist_electron/**/*"],
win: {
icon: "public/icons/icon.ico",
target: "nsis"
},
nsis: {
oneClick: false,
allowToChangeInstallationDirectory: true
}
}
}
}
};