From 281f3a9a89e1b3ff19f96cb32a828a85fdced757 Mon Sep 17 00:00:00 2001 From: Dariusz Niemczyk Date: Sat, 15 Feb 2025 01:02:59 +0100 Subject: [PATCH] feat: add a catch-all 404 --- src/app/[locale]/[...not-found]/page.tsx | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 src/app/[locale]/[...not-found]/page.tsx diff --git a/src/app/[locale]/[...not-found]/page.tsx b/src/app/[locale]/[...not-found]/page.tsx new file mode 100644 index 0000000..0d721e6 --- /dev/null +++ b/src/app/[locale]/[...not-found]/page.tsx @@ -0,0 +1,5 @@ +import { notFound } from "next/navigation" + +export default function NotFoundDummy() { + notFound() +}