Release 202505310921

This commit is contained in:
pluja
2025-05-31 09:21:32 +00:00
parent f7f380c591
commit 22944fcdb3
13 changed files with 340 additions and 161 deletions

View File

@@ -0,0 +1,13 @@
import type { APIRoute } from 'astro'
export const ALL: APIRoute = (context) => {
console.error('Endpoint not found', { url: context.url.href, method: context.request.method })
return new Response(
JSON.stringify({
error: 'Endpoint not found',
}),
{
status: 404,
}
)
}