@sokra by looking at plugin code it seems that it will do prefetch to all NormalModules after compilation was done, can you provide any additional context/info we might add to docs for that?
prefetch comes with two meanings in webpack:
<link> tag.This is about (build) prefetch. The PrefetchPlugin discovers a single module earlier. The AutomaticPrefetchPlugin discovers all modules from the previous compilation earlier when watching.
May or may not have a performance benefit. I guess it's not that important considering that the incremental build times are pretty fast anyway.
Most helpful comment
prefetch comes with two meanings in webpack:
<link>tag.This is about (build) prefetch. The PrefetchPlugin discovers a single module earlier. The AutomaticPrefetchPlugin discovers all modules from the previous compilation earlier when watching.
May or may not have a performance benefit. I guess it's not that important considering that the incremental build times are pretty fast anyway.