html-webpack-plugin creates an html output bundle by receiving a lodash template file and injects those selected bundles and chunks we need to make that html render a content dynamically.
We can follow two strategies in order to produce the output:
Write down a plugin instance for each output page, or map "plugins" array to a configuration, which could be written in code or read from file system
Summary
html-webpack-plugin
creates an html output bundle by receiving a lodash template file and injects those selected bundles and chunks we need to make that html render a content dynamically.We can follow two strategies in order to produce the output: Write down a plugin instance for each output page, or map "plugins" array to a configuration, which could be written in code or read from file system
Resources