HtmlWebpackPlugin

new HtmlWebpackPlugin({
            template: 'index.html',
            favicon: 'favicon.ico',
            minify: {
                collapseWhitespace: true, // 折叠空白区域
                minifyJS: true,
                removeComments: true // 移除 HTML 内注释
            }
        }),
原文地址:https://www.cnblogs.com/Running00/p/14516261.html