mirror of
https://github.com/vercel/next.js.git
synced 2026-09-20 02:25:18 +08:00
f260328900
- Enable newNextLinkBehavior. See #36436 - Run next/link codemod on test suite Note that from when this lands on apps trying canary will need to run the new-link codemod in order to upgrade. Ideally we have to detect `<a>` while rendering the new link and warn for it. Co-authored-by: Steven <steven@ceriously.com>
12 lines
178 B
JavaScript
12 lines
178 B
JavaScript
import Link from 'next/link'
|
|
|
|
export default function IndexPage() {
|
|
return (
|
|
<div>
|
|
<Link href="/about" prefetch>
|
|
To About Page
|
|
</Link>
|
|
</div>
|
|
)
|
|
}
|