浏览代码

打包去除console打印

zhaoke 3 年之前
父节点
当前提交
fffb7501b1
共有 1 个文件被更改,包括 13 次插入9 次删除
  1. 13 9
      vue.config.js

+ 13 - 9
vue.config.js

@@ -48,16 +48,20 @@ module.exports = {
     // },
     before: require('./mock/mock-server.js')
   },
-  configureWebpack: {
-    // provide the app's title in webpack's name field, so that
-    // it can be accessed in index.html to inject the correct title.
-    name: name,
-    resolve: {
-      alias: {
-        '@': resolve('src')
-      }
-    }
+  configureWebpack: (config) => {
+    // 取消console打印    
+    config.optimization.minimizer[0].options.terserOptions.compress.drop_console = true
   },
+  // configureWebpack: {
+  //   // provide the app's title in webpack's name field, so that
+  //   // it can be accessed in index.html to inject the correct title.
+  //   name: name,
+  //   resolve: {
+  //     alias: {
+  //       '@': resolve('src')
+  //     }
+  //   }
+  // },
   chainWebpack (config) {
     // it can improve the speed of the first screen, it is recommended to turn on preload
     config.plugin('preload').tap(() => [