File size: 276 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 9 10 11 | import { headers } from 'next/headers'
import { NextResponse } from 'next/server'
import { getRequestMeta } from '../../../helpers'
export const runtime = 'edge'
export async function GET() {
const meta = getRequestMeta(await headers())
return NextResponse.json(meta)
}
|