-
Notifications
You must be signed in to change notification settings - Fork 5
/
vue.config.js
106 lines (103 loc) · 3.25 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
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
module.exports = {
publicPath: './',
// 第三方插件配置
pluginOptions: {
electronBuilder: {
publish: {
provider: 'github',
repo: 'kindle2Flomo', // git仓库
owner: 'Tit1e', // 拥有者
releaseType: 'release',
vPrefixedTagName: false,
publishAutoUpdate: true // 发布自动更新(需要配置GH_TOKEN)。 默认true
},
electronDownload: {
mirror: "https://npm.taobao.org/mirrors/electron/"
},
productName: 'SendToflomo',
nodeIntegration: true,
builderOptions: {
// 设置打包之后的应用名称
productName: 'Send2flomo',
win: {
icon: 'public/icons/AppIcon.png',
// 图标路径 windows系统中icon需要256*256的ico格式图片,更换应用图标亦在此处
target: [
{
// 打包成一个独立的 exe 安装程序
target: 'nsis',
// 这个意思是打出来32 bit + 64 bit的包,但是要注意:这样打包出来的安装包体积比较大
arch: [
'x64'
// 'ia32'
]
}
]
},
dmg: {
contents: [
{
x: 410,
y: 150,
type: 'link',
path: '/Applications'
},
{
x: 130,
y: 150,
type: 'file'
}
]
},
linux: {
// 设置linux的图标
icon: 'public/icons/AppIcon.png',
target: 'AppImage'
},
mac: {
icon: 'public/icons/AppIcon.icns'
},
files: ['**/*'],
asar: false,
nsis: {
// 是否一键安装,建议为 false,可以让用户点击下一步、下一步、下一步的形式安装程序
// 如果为true,当用户双击构建好的程序,自动安装程序并打开,即:一键安装(one- click installer)
oneClick: false,
// 允许请求提升。 如果为false,则用户必须使用提升的权限重新启动安装程序。
allowElevation: true,
// 允许修改安装目录,建议为 true,是否允许用户改变安装目录,默认是不允许
allowToChangeInstallationDirectory: true,
// 安装图标
installerIcon: 'resources/ico/icon.ico',
// 卸载图标
uninstallerIcon: 'resources/ico/icon.ico',
// 安装时头部图标
installerHeaderIcon: 'resources/ico/icon.ico',
// 创建桌面图标
createDesktopShortcut: true,
// 创建开始菜单图标
createStartMenuShortcut: true
}
},
chainWebpackMainProcess: config => {
config.plugin('define').tap(args => {
args[0].IS_ELECTRON = true
return args
})
},
chainWebpackRendererProcess: config => {
config.plugin('define').tap(args => {
args[0].IS_ELECTRON = true
return args
})
}
}
},
chainWebpack: config => {
config.plugin('html').tap(args => {
args[0].title = 'Send2flomo'
return args
})
},
productionSourceMap: false
}