diff --git a/app/api/proxy/route.ts b/app/api/proxy/route.ts index 3f7d0e7..322ac7c 100644 --- a/app/api/proxy/route.ts +++ b/app/api/proxy/route.ts @@ -1,5 +1,8 @@ import { NextRequest, NextResponse } from 'next/server'; +// Use Edge Runtime for better geographic distribution +export const runtime = 'edge'; + export async function GET(request: NextRequest) { const url = request.nextUrl.searchParams.get('url');