1 2 3 4 5 6 7import { notFound } from "next/navigation"; export default function NotFoundTestPage() { // This page always triggers a 404 notFound(); }
1 2 3 4 5 6 7
import { notFound } from "next/navigation"; export default function NotFoundTestPage() { // This page always triggers a 404 notFound(); }