npm install htmlmin-loader --save
Documentation: Using loaders[http://webpack.github.io/docs/using-loaders.html]
options see html-minifier[https://github.com/kangax/html-minifier].
//config
module: {
loaders: [{
test: /\.html$/,
loader: "htmlmin-loader"
}]
},
'htmlmin-loader': {
/*[options]*/
}