import { apiFetch, jsonResponse } from '../../../_lib/api'; export const dynamic = 'force-dynamic'; export async function GET(): Promise { const res = await apiFetch('/auth/me'); const body = await res.json(); return jsonResponse(body, res.status); }