项目上线 去除console
程序员文章站
2024-01-28 09:00:10
...
webpack消除项目中console语句
npm install -D uglifyjs-webpack-plugin
plugins: [
...
new UglifyjsWebapckPlugin({
uglifyOptions: {
compress: {
// 设置打包时将console语句不打包进去
drop_console: true
}
}
})
...
]
上一篇: Golang 统计字符串字数的方法示例
下一篇: 图像处理——边缘检测