Skip to content

Not Found

keiro also supports a 404.ts file which is called when not route is matched.

src/routes/404.ts
import { defineHandler } from "keiro";
export default defineHandler(() => {
return new Response("Not Found", { status: 404 });
});