Skip to Content
🚧 This is WIP documentation for Nextra 4.0. Dima Machina is looking for a new job or consulting.
DocumentationGuideNext.js Link

Next.js Link

All relative Markdown links are automatically converted into Next.js links. This means that the target page will be prefetched. When you click on a link, the page will be loaded on the client-side like a Single-Page Application (SPA), without making a full page load. For example:

Markdown
Click [here](/about) to read more.

Will be equivalent to:

MDX
import Link from 'next/link' Click <Link href="/about">here</Link> to read more.

This feature makes navigation between Nextra pages fast and seamless.

Last updated on