diff --git a/functions/api/[[path]].ts b/functions/api/[[path]].ts new file mode 100644 index 0000000..b3bf654 --- /dev/null +++ b/functions/api/[[path]].ts @@ -0,0 +1,5 @@ +import { jsonError } from "../common.js"; + +export async function onRequest(context: RequestContext) { + return jsonError("Not found", 404); +}