diff --git a/web/src/app/not-found.tsx b/web/src/app/not-found.tsx new file mode 100644 index 000000000..6866db7cb --- /dev/null +++ b/web/src/app/not-found.tsx @@ -0,0 +1,5 @@ +import { redirect } from "next/navigation"; + +export default function NotFound() { + redirect("/chat"); +}