From e2dcabb47372a80d0552d61cd133430ef0fa5af2 Mon Sep 17 00:00:00 2001 From: Phill Pover Date: Sun, 6 Apr 2025 21:27:04 +0100 Subject: [PATCH] Cleanup --- backend/src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/main.ts b/backend/src/main.ts index b7ed1eb..48f4521 100644 --- a/backend/src/main.ts +++ b/backend/src/main.ts @@ -4,7 +4,7 @@ import { AppModule } from './app.module'; async function bootstrap() { const app = await NestFactory.create(AppModule); app.enableCors({ - origin: ['https://music.anatid.net','http://localhost:3000/'], + origin: ['https://music.anatid.net'], methods: 'GET,HEAD,PUT,PATCH,POST,DELETE', credentials: true, allowedHeaders: 'X-Requested-With, X-HTTP-Method-Override, Content-Type, Accept, Observe',