import Link from "next/link"; import { useRouter } from "next/router"; export default function Nav() { const router = useRouter(); return (

Default

Automatically prefetch pages in the background as soon the Link appears in the view:

Home Features

Imperative

Prefetch on onMouseEnter or on other events:

{ router.prefetch("/about"); console.log("prefetching /about!"); }} > About

Disable

Disable prefetching

Contact
); }