plugins: [htmlRenderPlugin.rendererPlugin];
To recreate the previous behaviour pass the stats collector to render config
plugins: [
htmlRenderPlugin.statsCollectorPlugin,
htmlRenderPlugin.rendererPlugin,
];
Where builds have two configurations (client and render) this will now mean your stats file will be a standard Stats file and not a MultiStats file.
This method was deprecated in the previous major release and has now been removed.
Example:
new HtmlRenderPlugin().apply(multiCompiler);
This syntax is still supported until the next major release but the prefered syntax is listed below.
Render
Before:
htmlRenderPlugin.render();
After:
htmlRenderPlugin.rendererPlugin;
Client
Before:
htmlRenderPlugin;
After:
htmlRenderPlugin.statsCollectorPlugin;