This commit is contained in:
2025-06-30 19:25:16 +01:00
parent c4981f5ffa
commit f2c92a6894

View File

@ -0,0 +1,5 @@
import type { RequestHandler } from "@sveltejs/kit";
export const fallback: RequestHandler = () => {
return new Response("ok");
};