|
@@ -112,14 +112,24 @@ module.exports = {
|
|
libs: {
|
|
libs: {
|
|
name: 'chunk-libs',
|
|
name: 'chunk-libs',
|
|
test: /[\\/]node_modules[\\/]/,
|
|
test: /[\\/]node_modules[\\/]/,
|
|
- priority: 10,
|
|
|
|
|
|
+ priority: -10,
|
|
chunks: 'initial' // only package third parties that are initially dependent
|
|
chunks: 'initial' // only package third parties that are initially dependent
|
|
},
|
|
},
|
|
elementUI: {
|
|
elementUI: {
|
|
name: 'chunk-elementUI', // split elementUI into a single package
|
|
name: 'chunk-elementUI', // split elementUI into a single package
|
|
- priority: 20, // the weight needs to be larger than libs and app or it will be packaged into libs or app
|
|
|
|
|
|
+ priority: 10, // the weight needs to be larger than libs and app or it will be packaged into libs or app
|
|
test: /[\\/]node_modules[\\/]_?element-ui(.*)/ // in order to adapt to cnpm
|
|
test: /[\\/]node_modules[\\/]_?element-ui(.*)/ // in order to adapt to cnpm
|
|
},
|
|
},
|
|
|
|
+ echarts: {
|
|
|
|
+ name: 'chunk-echarts', // split elementUI into a single package
|
|
|
|
+ priority: 9, // the weight needs to be larger than libs and app or it will be packaged into libs or app
|
|
|
|
+ test: /[\\/]node_modules[\\/]_?echarts(.*)/ // in order to adapt to cnpm
|
|
|
|
+ },
|
|
|
|
+ tinymce: {
|
|
|
|
+ name: 'chunk-tinymce', // split elementUI into a single package
|
|
|
|
+ priority: 8, // the weight needs to be larger than libs and app or it will be packaged into libs or app
|
|
|
|
+ test: /[\\/]node_modules[\\/]_?tinymce(.*)/ // in order to adapt to cnpm
|
|
|
|
+ },
|
|
commons: {
|
|
commons: {
|
|
name: 'chunk-commons',
|
|
name: 'chunk-commons',
|
|
test: resolve('src/components'), // can customize your rules
|
|
test: resolve('src/components'), // can customize your rules
|