import Link from 'next/link'
export default function Home() {
return (
<Link href="/dashboard" prefetch="hover">
Dashboard
</Link>
)
}
You can set the prefetch option on links to "hover".
https://nextjs.org/docs/pages/api-reference/components/link#prefetch