wangziqian 5 vuotta sitten
vanhempi
sitoutus
d9bf3a8fdc
1 muutettua tiedostoa jossa 12 lisäystä ja 2 poistoa
  1. 12 2
      vue.config.js

+ 12 - 2
vue.config.js

@@ -112,14 +112,24 @@ module.exports = {
                 libs: {
                   name: 'chunk-libs',
                   test: /[\\/]node_modules[\\/]/,
-                  priority: 10,
+                  priority: -10,
                   chunks: 'initial' // only package third parties that are initially dependent
                 },
                 elementUI: {
                   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
                 },
+                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: {
                   name: 'chunk-commons',
                   test: resolve('src/components'), // can customize your rules