File size: 182 Bytes
1e92f2d |
1 2 3 4 5 6 7 |
import { notFound } from 'next/navigation'
export default function Page() {
console.error(new Error('This error should get replayed'))
notFound() // ...and this one shouldn't
}
|