This commit is contained in:
Tben
2023-07-25 14:43:08 +01:00
parent 3f285b9399
commit a90bb8aed7
6 changed files with 271 additions and 191 deletions
+7
View File
@@ -0,0 +1,7 @@
import { NextResponse } from "next/server";
export async function GET(request: Request, context?: {}) {
console.log(request.headers);
return NextResponse.json({ name: "Benjamin Toby" });
}