forked from xiaozhu188/electron-vue-cloud-music
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vue.config.js
234 lines (232 loc) · 6.6 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
const path = require('path')
const isProd = process.env.NODE_ENV === 'production'
function resolve (dir) {
return path.join(__dirname, dir)
}
module.exports = {
runtimeCompiler: true,
assetsDir: 'public',
publicPath: isProd ? './' : '/',
productionSourceMap: true,
// webpack的相关配置
configureWebpack: {
entry: './src/renderer/main.js',
resolve: {
extensions: [ '.js', '.vue', '.json', '.ts', '.less' ],
alias: {
'@': resolve('src/renderer')
}
},
module: {
rules: [ {
test: /\.(html)(\?.*)?$/,
use: 'vue-html-loader'
}
]
},
// 公共资源合并
optimization: {
splitChunks: {
cacheGroups: {
vendor: {
chunks: 'all',
test: /node_modules/,
name: 'vendor',
minChunks: 1,
maxInitialRequests: 5,
minSize: 0,
priority: 100
},
common: {
chunks: 'all',
test: /[\\/]src[\\/]js[\\/]/,
name: 'common',
minChunks: 2,
maxInitialRequests: 5,
minSize: 0,
priority: 60
},
styles: {
name: 'styles',
test: /\.(sa|sc|le|c)ss$/,
chunks: 'all',
enforce: true
},
runtimeChunk: {
name: 'manifest'
}
}
}
},
// 性能警告修改
performance: {
hints: 'warning',
// 入口起点的最大体积 整数类型(以字节为单位)
maxEntrypointSize: 50000000,
// 生成文件的最大体积 整数类型(以字节为单位 300k)
maxAssetSize: 30000000,
// 只给出 js 文件的性能提示
assetFilter: function (assetFilename) {
return assetFilename.endsWith('.js')
}
}
},
chainWebpack: config => {
// 压缩图片
// config.module
// .rule('images')
// .use('image-webpack-loader')
// .loader('image-webpack-loader')
// .options({
// mozjpeg: {
// progressive: true,
// quality: 65
// },
// // optipng.enabled: false will disable optipng
// optipng: {
// enabled: false,
// },
// pngquant: {
// quality: [0.65, 0.90],
// speed: 4
// },
// gifsicle: {
// interlaced: false,
// },
// // the webp option will enable WEBP
// webp: {
// quality: 75
// }
// })
// .end()
// 分析插件
// config
// .plugin("webpack-bundle-analyzer")
// .use(require("webpack-bundle-analyzer").BundleAnalyzerPlugin)
// .end();
},
// 打包输出路径
outputDir: 'dist/web',
productionSourceMap: false,
// 构建时开启多进程处理 babel 编译
// parallel: require('os').cpus().length > 1,
css: {
// 是否使用css分离插件 ExtractTextPlugin
extract: isProd,
// 开启 CSS source maps?
sourceMap: !isProd,
// css预设器配置项
loaderOptions: {
less: {
modifyVars: {
'primary-color': '#c62f2f',
'link-color': '#c62f2f',
'border-radius-base': '4px'
},
javascriptEnabled: true
}
},
// 启用 CSS modules for all css / pre-processor files.
requireModuleExtension: true
},
// 开发服务器http代理
devServer: {
open: !process.argv.includes('electron:serve'),
host: 'localhost',
port: 9080,
https: false,
hotOnly: false,
proxy: {
'/api': {
target: 'http://localhost:9999/',
changeOrigin: true, // 是否跨域
ws: true, // 代理长连接
pathRewrite: {
'^/api': '/'
} // 重写接口
},
'/socket': {
target: 'ws://localhost:9999/',
ws: true
}
}
},
// 第三方插件配置
pluginOptions: {
// vue-cli-plugin-electron-builder配置
electronBuilder: {
builderOptions: {
win: {
icon: 'build/electron-icon/icon.ico',
// 图标路径 windows系统中icon需要256*256的ico格式图片,更换应用图标亦在此处
target: [ {
// 打包成一个独立的 exe 安装程序
target: 'nsis',
// 这个意思是打出来32 bit + 64 bit的包,但是要注意:这样打包出来的安装包体积比较大,所以建议直接打32的安装包。
'arch': [
'x64'
// 'ia32'
]
} ]
},
dmg: {
'contents': [
{
'x': 410,
'y': 150,
'type': 'link',
'path': '/Applications'
},
{
'x': 130,
'y': 150,
'type': 'file'
}
]
},
linux: {
icon: 'build/electron-icon/icon.png',
target: 'AppImage'
},
mac: {
icon: 'build/electron-icon/icon.icns'
},
files: [ '**/*' ],
asar: false,
nsis: {
// 是否一键安装,建议为 false,可以让用户点击下一步、下一步、下一步的形式安装程序,如果为true,当用户双击构建好的程序,自动安装程序并打开,即:一键安装(one-click installer)
oneClick: false,
// 允许请求提升。 如果为false,则用户必须使用提升的权限重新启动安装程序。
allowElevation: true,
// 允许修改安装目录,建议为 true,是否允许用户改变安装目录,默认是不允许
allowToChangeInstallationDirectory: true,
// 安装图标
installerIcon: 'build/electron-icon/icon.ico',
// 卸载图标
uninstallerIcon: 'build/electron-icon/icon.ico',
// 安装时头部图标
installerHeaderIcon: 'build/electron-icon/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
})
},
outputDir: 'dist/electron',
mainProcessFile: 'src/main/main.js',
mainProcessWatch: [ 'src/main' ]
}
}
}