美文网首页
UglifyJsPlugin

UglifyJsPlugin

作者: JaneMinHa | 来源:发表于2020-01-03 22:02 被阅读0次
     new UglifyJsPlugin({
         uglifyOptions: {
              compress: {
                           warnings: false,
                           drop_debugger: true, // 清除debugger語句
                            drop_console: true,
                            pure_funcs: ['console.log'] // 清除console
                        }
                    },
              sourceMap: config.build.productionSourceMap,
              parallel: true,
              cache: true
     })
    

    相关文章

      网友评论

          本文标题:UglifyJsPlugin

          本文链接:https://www.haomeiwen.com/subject/xnogzqtx.html