import { NextResponse } from "next/server"; import { APP_VERSION } from "@/lib/env"; export const dynamic = "force-dynamic"; export async function GET() { return NextResponse.json({ status: "ok", version: APP_VERSION, time: new Date().toISOString() }); }