Back to Webpack Js Org

AutomaticPrefetchPlugin

src/content/plugins/automatic-prefetch-plugin.mdx

4.41.2483 B
Original Source

The AutomaticPrefetchPlugin discovers all modules from the previous compilation upfront while watching for changes, trying to improve the incremental build times. Compared to PrefetchPlugin which discovers a single module upfront.

W> May or may not have a performance benefit since the incremental build times are pretty fast.

webpack.config.js

js
export default {
  // ...
  plugins: [new webpack.AutomaticPrefetchPlugin()],
};