import { NextResponse } from "next/server"; export const runtime = "edge"; export const preferredRegion = ["pdx1"]; function handler() { return NextResponse.json( { message: "Private Pong!" }, { status: 200, statusText: "SUCCESS" } ); } export { handler as GET };