import { configStore } from "@/lib/config/loader"; export const dynamic = "force-dynamic"; export async function GET(): Promise { try { configStore.get(); return Response.json({ status: "ok" }); } catch (err) { return Response.json({ status: "error", message: (err as Error).message }, { status: 503 }); } }