import type { APIRoute } from 'astro' export const GET: APIRoute = () => { return new Response( JSON.stringify({ message: 'OK', timestamp: new Date().toISOString(), }), { status: 200, headers: { 'Access-Control-Allow-Origin': '*', 'Content-Type': 'application/json', }, } ) }