// File: frontend/api/health/route.js export async function GET() { return new Response(JSON.stringify({ status: 'ok', service: 'frontend', ts: Date.now() }), { headers: { 'content-type': 'application/json' }, status: 200, }); }