next.js/test/e2e/app-dir/app-routes/app/status/500/next/route.ts
route.ts12 lines274 B
import { cookies } from 'next/headers'
import { NextResponse } from 'next/server'

export async function GET() {
  if (process.env.NEXT_PHASE === 'phase-production-build') {
    // don't error during build
    await cookies()
  } else {
    return NextResponse.next()
  }
}
Quest for Codev2.0.0
/
SIGN IN