为了账号安全,请及时绑定邮箱和手机立即绑定

webpack4打包如何去除console?

webpack4打包如何去除console?

30秒到达战场 2019-01-29 14:49:03
使用new webpack.optimize.UglifyJsPlugin({     compress: {          warnings: false,          drop_debugger: true,          drop_console: true      } )}提示已经移除该方法,推荐使用minimize,minimize该如何去除console呢?
查看完整描述

1 回答

?
GCT1015

TA贡献1827条经验 获得超4个赞

cssnano插件
npm i -D @intervolga/optimize-cssnano-plugin

const optimizeCssnanoPlugin = require('@intervolga/optimize-cssnano-plugin');module.exports = {
    plugins: [        new optimizeCssnanoPlugin({
            cssnanoOptions: {
                preset: [                    'default',
                    {
                        discardComments: {
                            removeAll: true,
                        },
                    }
                ],
            },
        })
    ]
};

看错题了,这是压缩css,题主无视吧。。。


查看完整回答
反对 回复 2019-01-29
  • 1 回答
  • 0 关注
  • 1327 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信