import { Context } from "@oak/oak"; import { errorPageHtml } from "../html.ts"; const notFoundHandler = function (ctx: Context) { const html = errorPageHtml(404, "Not found"); ctx.response.body = html; ctx.response.status = 404; }; export default notFoundHandler;