webpack去除开发日志

在webpack.prod.config.js中修改为如下:


new webpack.optimize.UglifyJsPlugin({  
      compress: {  
        warnings: false,  
        drop_debugger: true,  
        drop_console: true  
      },  
      sourceMap: true  
    }),  

猜你喜欢

转载自blog.csdn.net/easyclub_hanjixin/article/details/80307384