import { NextResponse } from 'next/server' export async function GET() { return NextResponse.json({ hello: 'app-edge' }) } export const runtime = 'edge' export const maxDuration = 2