next.js/test/e2e/app-dir/unstable-rethrow/app/page.tsx
page.tsx13 lines226 B
import { notFound, unstable_rethrow } from 'next/navigation'

export default async function Page() {
  try {
    notFound()
  } catch (err) {
    unstable_rethrow(err)
    console.error(err)
  }

  return <p>hello world</p>
}
Quest for Codev2.0.0
/
SIGN IN