-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvue.config.js
75 lines (74 loc) · 2.07 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
const {defineConfig} = require('@vue/cli-service')
const CompressionPlugin = require('compression-webpack-plugin')
const path = require('path')
const TerserPlugin = require('terser-webpack-plugin')
module.exports = defineConfig({
transpileDependencies: true,
lintOnSave: true,
publicPath: '/',
devServer: {
port: 9982,
proxy: {
// add your proxies here
}
},
outputDir: path.resolve(__dirname, 'dist'),
configureWebpack: config => {
if (process.env.NODE_ENV === 'production') {
config.output.filename = '[name].[contenthash].bundle.js'
config.devtool = false
config.plugins = [
...config.plugins,
new TerserPlugin({
extractComments: {
condition: /^\**!|@preserve|@license|@cc_on/i
},
terserOptions: {
sourceMap: false,
ecma: 2016,
output: {
comments: false,
beautify: false
},
compress: {
sequences: true,
dead_code: true,
conditionals: true,
booleans: true,
unused: true,
if_return: true,
pure_funcs: ['console.log', 'console.debug', 'console.info', 'console.warn']
}
}
}),
new CompressionPlugin({
algorithm: 'brotliCompress',
compressionOptions: {level: 11},
minRatio: 1,
deleteOriginalAssets: false
}),
new CompressionPlugin({
algorithm: 'gzip',
minRatio: 1
})
]
config.optimization = {
minimize: true,
moduleIds: 'deterministic',
runtimeChunk: 'single',
splitChunks: {
chunks: 'async',
cacheGroups: {
vendor: {
test: /[\\/]node_modules[\\/]/,
name (module) {
const packageName = module.context.match(/[\\/]node_modules[\\/](.*?)([\\/]|$)/)[1]
return `lib.${packageName.replace('@', '')}`
}
}
}
}
}
}
}
})