import type { APIRoute } from 'astro'; export const GET: APIRoute = async ({ locals }) => { return new Response( JSON.stringify({ user: locals.user ? { id: locals.user.id, email: locals.user.email } : null, profile: locals.profile, }, null, 2), { headers: { 'content-type': 'application/json' } }, ); };