EJS loader for webpack [html-loader]. Uses ejs function to render templates.
npm install ejs4html-loader
module:{
loaders: [
{
test: /\.ejs$/,
loader: "html!ejs-render"
}
]
},
plugins: [
new HtmlWebpackPlugin({
filename: 'index.html',
template: 'index.ejs',
inject: 'body',
minify: {
removeComments: true,
collapseWhitespace: true
}
})
],