17 lines
626 B
TypeScript
17 lines
626 B
TypeScript
import { getLiveKitURL } from '@/lib/server-utils';
|
|
import { NextRequest, NextResponse } from 'next/server';
|
|
|
|
export async function GET(req: NextRequest) {
|
|
try {
|
|
const region = req.nextUrl.searchParams.get('region');
|
|
const livekitUrl = getLiveKitURL(region);
|
|
return NextResponse.json({ url: livekitUrl });
|
|
} catch (error) {
|
|
if (error instanceof Error) {
|
|
return new NextResponse(error.message, { status: 500 });
|
|
}
|
|
}
|
|
}
|
|
|
|
export const runtime = 'edge'; // Can be removed if not deploying to Edge Runtime. See https://nextjs.org/docs/app/building-your-application/rendering/edge-and-nodejs-runtimes
|