next.js/test/e2e/switchable-runtime/pages/edge/foo.js
foo.js14 lines210 B
import Link from 'next/link'

export default function Page() {
  return (
    <div>
      <Link href="/edge/123">to /edge/[id]</Link>
    </div>
  )
}

export const config = {
  runtime: 'experimental-edge',
}
Quest for Codev2.0.0
/
SIGN IN