-
Notifications
You must be signed in to change notification settings - Fork 0
/
vue.config.js
50 lines (50 loc) · 1.13 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
41
42
43
44
45
46
47
48
49
50
module.exports = {
pluginOptions: {
electronBuilder: {
externals: ['fluent-ffmpeg'],
chainWebpackRendererProcess: config => {
config.plugin('define').tap(args => {
args[0]['process.env.FLUENTFFMPEG_COV'] = false;
return args;
});
},
nodeIntegration: true,
customFileProtocol: './',
builderOptions: {
productName: 'Music',
appId: 'com.LutetiumVanadium.Music',
directories: {
output: 'release',
buildResources: 'public',
},
dmg: {
contents: [
{
x: 410,
y: 150,
type: 'link',
path: '/Applications',
},
{
x: 130,
y: 150,
type: 'file',
},
],
},
mac: {
icon: 'icons/icon.icns',
},
win: {
icon: 'icons/icon.ico',
target: ['nsis'],
},
linux: {
icon: 'icons/linux',
target: ['AppImage', 'tar.gz'],
category: 'AudioVideo',
},
},
},
},
};