When linking to other pages on a site in NextJS, I know using <Link>
is better because it supports prefetching and client-side rendering.
With that said, though, is it better to use <Link>
or <a>
when navigating to an external page/other URL? Is there any difference?