This repository was archived by the owner on Jan 21, 2021. It is now read-only.

Description
I have this config in my webpack file used for a MPA in PHP template
new HtmlWebpackPlugin({ filename: '${VIEWS_PATH}/index.php', template: '${VIEWS_PATH}/index.php', chunks: ['index', 'vendor', 'lib'] }),
new HtmlWebpackPlugin({ filename: '${VIEWS_PATH}/product.php', template: '${VIEWS_PATH}/product.php', chunks: ['product', 'vendor', 'lib'] }),
How I need to config preload-webpack-plugin for preload async chunks in a MPA if a have multiple HtmlWebpackPlugin entries?