zl程序教程

您现在的位置是:首页 >  其他

当前栏目

关于webpack5打包时生成LICENSE.txt文件的解决方案

文件打包解决方案 生成 关于 txt license Webpack5
2023-06-13 09:18:28 时间

问题

最近在使用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, //不将注释提取到单独的文件中
        })],
    },
}