-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathvue.config.js
More file actions
47 lines (47 loc) · 1.01 KB
/
Copy pathvue.config.js
File metadata and controls
47 lines (47 loc) · 1.01 KB
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
39
40
41
42
43
44
45
46
47
module.exports = {
pages: {
index: {
entry: './src/main.ts',
template: './public/index.html',
},
keybind_dialog: './src/keybind_dialog/main.ts',
},
pluginOptions: {
electronBuilder: {
preload: 'src/preload.ts',
builderOptions: {
appId: 'com.belvederef.vs-overlay',
copyright: 'Copyright © 2021 Francesco Belvedere',
productName: 'VS Relief Overlay',
mac: {
target: ['dmg', '7z'],
category: 'public.app-category.utilities',
},
win: {
target: ['portable', 'NSIS'],
},
linux: {
target: ['AppImage'],
},
files: ['**/*', 'build/icons/*'],
publish: [
{
provider: 'github',
owner: 'belvederef',
repo: 'visual-snow-relief-overlay',
},
],
},
},
},
css: {
loaderOptions: {
css: {
sourceMap: true,
},
sass: {
sourceMap: true,
},
},
},
};