next.js/test/e2e/app-dir/with-exported-function-config/app/app-route-edge/route.ts
route.ts9 lines186 B
import { NextResponse } from 'next/server'

export async function GET() {
  return NextResponse.json({ hello: 'app-edge' })
}

export const runtime = 'edge'
export const maxDuration = 2
Quest for Codev2.0.0
/
SIGN IN