html-webpack-plugin
new htmlWebpackPlugin({
// 传参
filename:'index.html',
template:'index.html',
inject:'head',
title:'my webpack',
minify:true
}) /* 对 plugin 插件 进行初始化 */
添加了 minify:true 生成的页面就会报错
原因是因为从这个版本起,htmlminify 没有了默认值,需要自己配置
minify:{
collapseWhitespace:true
}