Add catchall api route

This commit is contained in:
2023-10-20 10:13:39 -04:00
parent 748aa0e120
commit 91d00eec57

View File

@ -0,0 +1,5 @@
import { jsonError } from "../common.js";
export async function onRequest(context: RequestContext) {
return jsonError("Not found", 404);
}