From 4aaf963c0dd2861434e49391b34c5dcd9ffa5daa Mon Sep 17 00:00:00 2001 From: David Boreham Date: Fri, 6 Jun 2025 13:08:45 -0600 Subject: [PATCH] Add missing line from previous revert --- api/src/main.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/api/src/main.ts b/api/src/main.ts index a8b7d22e..108c7672 100644 --- a/api/src/main.ts +++ b/api/src/main.ts @@ -31,6 +31,7 @@ async function bootstrap() { app.disable('x-powered-by'); app.set('trust proxy', 1); + app.enableCors(); const port = configService.get('PORT') || 3000;