forked from rubickCenter/rubick
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvue.config.js
More file actions
75 lines (74 loc) · 1.77 KB
/
vue.config.js
File metadata and controls
75 lines (74 loc) · 1.77 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
// eslint-disable-next-line @typescript-eslint/no-var-requires
const path = require('path');
module.exports = {
// transpileDependencies: ["fix-path"],
configureWebpack: {
resolve: {
alias: {
'@': path.join(__dirname, './src'),
},
},
externals: {
'extract-file-icon': 'commonjs extract-file-icon',
},
},
pages: {
index: {
entry: 'src/renderer/main.ts',
},
},
productionSourceMap: false,
pluginOptions: {
electronBuilder: {
nodeIntegration: true,
mainProcessFile: 'src/main/index.ts',
mainProcessWatch: ['src/main'],
externals: ['pouchdb', 'extract-file-icon', 'electron-screenshots'],
// Use this to change the entry point of your app's render process. default src/[main|index].[js|ts]
builderOptions: {
productName: 'rubick2',
appId: 'com.muwoo.rubick',
compression: 'maximum',
directories: {
output: 'build',
},
// files: ["dist_electron/**/*"],
dmg: {
contents: [
{
x: 410,
y: 150,
type: 'link',
path: '/Applications',
},
{
x: 130,
y: 150,
type: 'file',
},
],
},
mac: {
icon: 'public/icons/icon.icns',
target: ['pkg'],
extendInfo: {
LSUIElement: 1,
},
},
win: {
icon: 'public/icons/icon.ico',
target: 'nsis',
},
nsis: {
oneClick: false,
allowToChangeInstallationDirectory: true,
},
linux: {
icon: 'public/icons/',
publish: ['github'],
target: 'deb',
},
},
},
},
};