rsnext/test/e2e/switchable-runtime/pages/node.js
Tim Neutkens f260328900
BREAKING CHANGE: Enable newNextLinkBehavior (#41459)
- 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>
2022-10-17 21:20:28 -04:00

44 lines
928 B
JavaScript

import Runtime from '../utils/runtime'
import Time from '../utils/time'
import Link from 'next/link'
export default function Page() {
return (
<div>
This is a static page.
<br />
<Runtime />
<br />
<Time />
<br />
<Link href="/node-rsc" id="link-node-rsc">
to /node-rsc
</Link>
<br />
<Link href="/node-rsc-ssg" id="link-node-rsc-ssg">
to /node-rsc-ssg
</Link>
<br />
<Link href="/node-rsc-ssr" id="link-node-rsc-ssr">
to /node-rsc-ssr
</Link>
<br />
<Link href="/node-rsc-isr" id="link-node-rsc-isr">
to /node-rsc-isr
</Link>
<br />
<Link href="/node-ssg" id="link-node-ssg">
to /node-ssg
</Link>
<br />
<Link href="/node-ssr" id="link-node-ssr">
to /node-ssr
</Link>
</div>
)
}
export const config = {
runtime: 'nodejs',
}