Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@intervolga/html-index-plugin

intervolga310MIT1.0.4

WebPack 2+ plugin for creating index of output path

html, index, webpack, loader

readme

html-index-plugin Build Status

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()
    ]
}