import { Middleware } from 'koa'; export function notFoundMiddleware(): Middleware { const noFoundTemplate = `

404

This page could not be found.

`; return ctx => { ctx.body = noFoundTemplate; ctx.status = 404; }; }