中文文档
Next.js 的 Link 组件

Next.js 的 Link 组件

Markdown 文件中的所有相对路径的链接都会自动转换为 Next.js 的 Link 组件。 这意味着链接的目标页面将被预取。当您点击链接时, 目标页面将像在单页应用(SPA)中一样在客户端加载,而无需加载整个页面。 例如:

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

被转换为:

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

该功能让 Nextra 页面之间的导航快速无缝。