html-index-plugin 
It will search for HTML assets during the Webpack build and emits index.html with links to that files.
Installation:
Using npm:
$ npm install --save-dev @intervolga/html-index-plugin
Configuration:
const HtmlIndexPlugin = require('@intervolga/html-index-plugin');
module.exports = {
plugins: [
new HtmlIndexPlugin()
]
}