14 lines
267 B
TypeScript
14 lines
267 B
TypeScript
|
import { NextResponse } from "next/server";
|
||
|
|
||
|
export const config = {
|
||
|
runtime: "edge",
|
||
|
regions: ["pdx1"],
|
||
|
};
|
||
|
|
||
|
export default async function handler() {
|
||
|
return NextResponse.json(
|
||
|
{ message: "Private Pong!" },
|
||
|
{ status: 200, statusText: "SUCCESS" }
|
||
|
);
|
||
|
}
|