forked from Amsterdam/ggw-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvue.config.js
49 lines (47 loc) · 1.18 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
const path = require('path')
const CopyWebpackPlugin = require('copy-webpack-plugin')
module.exports = {
runtimeCompiler: true,
productionSourceMap: true,
configureWebpack: config => {
config.plugins.push(
new CopyWebpackPlugin([
{
from: path.resolve(__dirname, 'static'),
to: path.resolve(__dirname, 'dist/static'),
ignore: ['.*']
}
])
)
if (process.env.NODE_ENV === 'production') {
config.optimization.splitChunks = {
chunks: 'all',
minSize: 55000,
maxSize: 128000,
cacheGroups: {
vendorVue: {
name: 'vue',
test: /[\\/]node_modules[\\/](.*vue.*)[\\/]/,
chunks: 'all',
priority: -10
},
vendorVega: {
name: 'vega',
test: /[\\/]node_modules[\\/](.*vega.*)[\\/]/,
chunks: 'all',
priority: -20
},
commons: {
name: 'commons',
chunks: 'initial',
minChunks: 2,
reuseExistingChunk: true,
priority: -30
}
}
}
} else {
// mutate for development...
}
}
}