Explorar el Código

第三方库优化

zhengnaiwen_citu hace 3 meses
padre
commit
13642fa2dd
Se han modificado 1 ficheros con 1 adiciones y 3 borrados
  1. 1 3
      vue.config.js

+ 1 - 3
vue.config.js

@@ -91,7 +91,6 @@ module.exports = defineConfig({
           uglifyOptions: {
             compress: {
               drop_console: true,
-              pure_funcs: ['console.log'], // 移除 console.log
               drop_debugger: true
             },
             output: {
@@ -99,8 +98,7 @@ module.exports = defineConfig({
             }
           },
           sourceMap: false,
-          parallel: true,
-          ie8: true // 支持 IE8+ (也会处理 IE11 的兼容问题)
+          parallel: true
         }))
     }
   },