forked from sarvex/SolarTweaks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vue.config.js
40 lines (40 loc) · 1.11 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
39
40
module.exports = {
pluginOptions: {
electronBuilder: {
nodeIntegration: true,
outputDir: 'dist',
builderOptions: {
appId: 'com.solartweaks.launcher',
productName: 'Solar Tweaks',
win: {
target: 'nsis',
icon: 'build/icons/win/icon.ico',
publisherName: 'Solar Tweaks',
verifyUpdateCodeSignature: true,
requestedExecutionLevel: 'asInvoker',
},
nsis: {
oneClick: true,
installerIcon: 'build/icons/win/icon.ico',
uninstallerIcon: 'build/icons/win/icon.ico',
installerHeaderIcon: 'build/icons/win/icon.ico',
runAfterFinish: true,
},
linux: {
target: 'AppImage',
maintainer: 'Solar Tweaks',
vendor: 'Solar Tweaks',
icon: 'build/icons/linux/1024x1024.png',
synopsis: 'Solar Tweaks',
description: 'Solar Tweaks',
category: 'Game',
},
mac: {
category: 'Game',
target: 'dmg',
icon: 'build/icons/macos/icon.icns',
},
},
},
},
};