diff --git a/src/main.ts b/src/main.ts index f76bc8d..9da9f87 100644 --- a/src/main.ts +++ b/src/main.ts @@ -3,6 +3,10 @@ import { AppModule } from './app.module'; async function bootstrap() { const app = await NestFactory.create(AppModule); + app.enableCors({ + credentials: true, + origin: ['https://shows.everest.tailscale/admin/'] + }); await app.listen(process.env.PORT ?? 3000); } bootstrap();