diff --git a/backend/src/server.ts b/backend/src/server.ts index 3cd7fe5..45520e8 100644 --- a/backend/src/server.ts +++ b/backend/src/server.ts @@ -53,8 +53,8 @@ const createApp = () => { app.use(`${MEET_INTERNAL_API_BASE_PATH_V1}/recordings`, internalRecordingRouter); app.use('/meet/health', (_req: Request, res: Response) => res.status(200).send('OK')); + // LiveKit Webhook route app.use('/livekit/webhook', livekitWebhookRouter); - app.use('/meet/livekit/webhook', livekitWebhookRouter); // Serve OpenVidu Meet webcomponent bundle file app.get('/meet/v1/openvidu-meet.js', (_req: Request, res: Response) => res.sendFile(webcomponentBundlePath)); // Serve OpenVidu Meet index.html file for all non-API routes