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.