## Prerequisites - We realize there is a lot of data requested here. We ask only that you do your best to provide as much information as possible so we can better help you. - Support questions are better asked in one of the following locations: - [Stack Overflow](http://stackoverflow.com/questions/tagged/html-webpack-plugin) - Ensure the issue isn't already reported. - Should be reproducible with the latest version of `html-webpack-plugin`. - (Ensure `npm ls html-webpack-plugin` matches ) *Delete the above section and the instructions in the sections below before submitting* ## Description If this is a feature request, explain why it should be added. Specific use-cases are best. For bug reports, please provide as much *relevant* info as possible. ### Error Message & Stack Trace ``` COPY THE ERROR MESSAGE, INCLUDING STACK TRACE HERE ``` ### Config Copy the relevant section from `webpack.config.js`: ```js module.exports = { entry: 'app.js', output: { path: 'dist', filename: 'index_bundle.js' }, module: { rules: [ ... ] } plugins: [ new HtmlWebpackPlugin(), ... ] } ``` Copy your template file: ```html