mirror of
https://gitee.com/chu1204505056/vue-admin-beautiful.git
synced 2025-04-05 19:41:43 +08:00
deploy
This commit is contained in:
parent
13f7a154ae
commit
5d0aa74f0d
@ -43,6 +43,7 @@ module.exports = {
|
|||||||
assetsDir,
|
assetsDir,
|
||||||
outputDir,
|
outputDir,
|
||||||
lintOnSave,
|
lintOnSave,
|
||||||
|
|
||||||
transpileDependencies,
|
transpileDependencies,
|
||||||
devServer: {
|
devServer: {
|
||||||
hot: true,
|
hot: true,
|
||||||
@ -106,23 +107,33 @@ module.exports = {
|
|||||||
config.performance.set('hints', false)
|
config.performance.set('hints', false)
|
||||||
config.devtool('none')
|
config.devtool('none')
|
||||||
config.optimization.splitChunks({
|
config.optimization.splitChunks({
|
||||||
|
automaticNameDelimiter: '-',
|
||||||
chunks: 'all',
|
chunks: 'all',
|
||||||
cacheGroups: {
|
cacheGroups: {
|
||||||
libs: {
|
chunk: {
|
||||||
name: 'chunk-libs',
|
name: 'vab-chunk',
|
||||||
test: /[\\/]node_modules[\\/]/,
|
test: /[\\/]node_modules[\\/]/,
|
||||||
|
minSize: 131072,
|
||||||
|
maxSize: 524288,
|
||||||
|
chunks: 'async',
|
||||||
|
minChunks: 2,
|
||||||
priority: 10,
|
priority: 10,
|
||||||
|
},
|
||||||
|
vue: {
|
||||||
|
name: 'vue',
|
||||||
|
test: /[\\/]node_modules[\\/](vue(.*)|core-js)[\\/]/,
|
||||||
chunks: 'initial',
|
chunks: 'initial',
|
||||||
|
priority: 20,
|
||||||
},
|
},
|
||||||
elementUI: {
|
elementUI: {
|
||||||
name: 'chunk-elementUI',
|
name: 'element-ui',
|
||||||
priority: 20,
|
test: /[\\/]node_modules[\\/]element-ui(.*)[\\/]/,
|
||||||
test: /[\\/]node_modules[\\/]_?element-ui(.*)/,
|
priority: 30,
|
||||||
},
|
},
|
||||||
fortawesome: {
|
extra: {
|
||||||
name: 'chunk-fortawesome',
|
name: 'vab-layouts',
|
||||||
priority: 20,
|
test: resolve('src/layouts'),
|
||||||
test: /[\\/]node_modules[\\/]_?@fortawesome(.*)/,
|
priority: 40,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
Loading…
x
Reference in New Issue
Block a user