最近在使用webpack5进行打包时,多出了一个LICENSE.txt的文件,查阅官网资料,找到了解决办法。
官方:
https://webpack.js.org/plugins/terser-webpack-plugin/
extractComments默认为true
在webpack.config.js中修改配置
const TerserPlugin = require("terser-webpack-plugin")
module.exports = {
optimization: {
minimize: true,
minimizer: [new TerserPlugin({
extractComments: false, //不将注释提取到单独的文件中
})],
},
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)