79725834

Date: 2025-08-05 08:50:43
Score: 1
Natty:
Report link

The preloads are inserted because Webpack adds prefetch/preload hints based on the import() statement. You can suppress this behavior like so:

const MyComponent = dynamic(() =>
import(/* webpackPreload: false */ './MyComponent')
)

This tells Webpack not to insert a preload hint for that chunk.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: kollodziej