next.js/test/development/replayed-internal-errors/app/will-notfound/page.tsx
page.tsx7 lines182 B
import { notFound } from 'next/navigation'

export default function Page() {
  console.error(new Error('This error should get replayed'))
  notFound() // ...and this one shouldn't
}
Quest for Codev2.0.0
/
SIGN IN