Matheus Sampaio Queiroga
e6cab72032
Signed-off-by: Matheus Sampaio Queiroga <srherobrine20@gmail.com>
10 lines
261 B
TypeScript
10 lines
261 B
TypeScript
import { NextRequest, NextResponse } from "next/server";
|
|
export const dynamic = 'force-dynamic';
|
|
|
|
export async function GET(Request: NextRequest, {params: { id }}) {
|
|
return NextResponse.json({
|
|
url: Request.url,
|
|
headers: Request.headers,
|
|
id
|
|
});
|
|
} |