码迷,mamicode.com
首页 > 其他好文 > 详细

取消生产环境/开发环境 控制台输出

时间:2019-12-12 14:41:47      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:java   速度   debugger   ons   drop   移除   class   new   int   

取消生产环境控制台输出

const UglifyJsPlugin = require('uglifyjs-webpack-plugin');


module.exports = {
    devServer: {
        port: 8899,     // 端口
    },
    lintOnSave: false,   // 取消 eslint 验证

    configureWebpack:{
        optimization: {
            minimizer: [
                new UglifyJsPlugin({
                    uglifyOptions: {
                        compress: {
                        // warnings: false,
                        drop_console: true,//console
                        drop_debugger: false,
                        pure_funcs: ['window.console.log']//移除console
                        }
                    }
                })
            ]
        }
    }
    
    // configureWebpack: (config)=>{
    //     if(process.env.NODE_ENV === 'production'){
    //       config.optimization.minimizer[0].options.terserOptions.compress.drop_console = true
    //     }
    // }

    // if(isProduction) {
    //     minimizer:[
    //     new UglifyJsPlugin({
    //         uglifyOptions: {
    //             mangle: {
    //                 safari10: true
    //             },
    //             compress: {
    //                 warnings: false,
    //                 drop_debugger: true,//console
    //                 drop_console: true,
    //                 pure_funcs: ['console.log']//移除console
    //             },
    //         },
    //         sourceMap: config.build.productionSourceMap,
    //         cache: true,
    //         parallel: true,
                    
    //       }),
    //     ]
    // }

    
    // configureWebpack: config => {
    //     if (process.env.NODE_ENV === 'production') {
    //       // 为生产环境修改配置
    //       config.plugins.push(
    //           new UglifyJsPlugin({
    //               uglifyOptions: {
    //                   compress: {
    //                       drop_debugger: true,
    //                       drop_console: true,  //生产环境自动删除console
    //                   },
    //                   warnings: false,
    //               },
    //               sourceMap: false,
    //               parallel: true,//使用多进程并行运行来提高构建速度。默认并发运行数:os.cpus().length - 1。
    //           })
    //       );
    //     }
    // }

    // minimizer:[
    //     new UglifyJsPlugin({
    //         uglifyOptions: {
    //             mangle: {
    //                 safari10: true
    //             },
    //             compress: {
    //                 warnings: false,
    //                 drop_debugger: true,//console
    //                 drop_console: true,
    //                 pure_funcs: ['console.log']//移除console
    //             },
    //         },
    //         sourceMap: config.build.productionSourceMap,
    //         cache: true,
    //         parallel: true,
                    
    //       }),
    // ]
    
};



// terser-webpack-plugin
// module.exports = {
//     devServer: {
//         port: 8899,     // 端口
//     },
//     lintOnSave: false,   // 取消 eslint 验证
//     configureWebpack: (config)=>{
//       if(process.env.NODE_ENV === 'production'){
//         config.optimization.minimizer[0].options.terserOptions.compress.drop_console = true
//       }
//     }
// }

一种简单粗暴的方法

在加载完成后,重写console.log

console.log = function() {}
window.console.log = function(){}

取消生产环境/开发环境 控制台输出

标签:java   速度   debugger   ons   drop   移除   class   new   int   

原文地址:https://www.cnblogs.com/marvelousone/p/12028936.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!