react-code-dataset
/
next.js
/turbopack
/crates
/turbopack-ecmascript
/tests
/tree-shaker
/analyzer
/route-handler
/input.js
| import { NextResponse } from "next/server"; | |
| export const GET = (req) => { | |
| return NextResponse.json({ | |
| pathname: req.nextUrl.pathname, | |
| }); | |
| }; | |
| export const runtime = "edge"; | |