import Link from "next/link"; import { useRouter } from "next/router"; export default function Nav() { const router = useRouter(); return (
Automatically prefetch pages in the background as soon the Link appears in the view:
Home FeaturesPrefetch on onMouseEnter or on other events:
{ router.prefetch("/about"); console.log("prefetching /about!"); }} > AboutDisable prefetching
Contact