使用的插件:html-webpack-plugin
在webpack.config.js中plugins配置项中增加如下代码即可
new HtmlWebpackPlugin({
template: "./src/index.html",
minify: {
// 移除空格
collapseWhitespace: true,
//移除注释
removeComments: true
}
})