google chrome requiring link preload #16961
-
does anyone know how to get out of this? I looked in the issues but nobody managed to solve it ... |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
crossorigin="anonymous" doesnt work about second print |
Beta Was this translation helpful? Give feedback.
-
I would not recommend this (your sites perceived performance is more important than Lighthouse), but you could disable link prefetching which would then not add that import Link from 'next/link'
<Link href="/your-page" prefetch={false}><a>My link</a></Link> |
Beta Was this translation helpful? Give feedback.
I would not recommend this (your sites perceived performance is more important than Lighthouse), but you could disable link prefetching which would then not add that
<link>
to your page. By default Next will add these prefetch<link>
tags for each one of yournext/link
components on a page. This speeds up navigation to the next page. Here is how you disable it: