diff --git a/apps/web/app/api/route.ts b/apps/web/app/api/route.ts index 512b89d..cc05a43 100644 --- a/apps/web/app/api/route.ts +++ b/apps/web/app/api/route.ts @@ -1,5 +1,5 @@ // Empty route file import { NextResponse } from 'next/server'; export async function GET() { - return NextResponse.json({ time: new Date().toISOString() }); + return NextResponse.json({ time: new Date().toUTCString() }); }