export async function GET() { const res = await fetch('http://backend:8000/api/meals', { headers: { 'Content-Type': 'application/json', }, }); const data = await res.json(); return Response.json(data); }