webpack打包 移除alert()

原文地址:https://stackoverflow.com/questions/41040266/remove-console-logs-with-webpack-uglify

image.png
    uglifyOptions: {
           compress: {
              global_defs: {
                "@alert": "console.log", // 去掉alert
              },
              // drop_console: true
            }
          },

你可能感兴趣的:(webpack打包 移除alert())