next.js/test/e2e/app-dir/prefetching-not-found/app/page.tsx
page.tsx11 lines182 B
import Link from 'next/link'

export default function Home() {
  return (
    <div>
      <h1>Home Page</h1>
      <Link href="/fake-link">Go to Invalid Page</Link>
    </div>
  )
}
Quest for Codev2.0.0
/
SIGN IN