diff --git a/backend/src/main.ts b/backend/src/main.ts index 87a3f78..53ed861 100644 --- a/backend/src/main.ts +++ b/backend/src/main.ts @@ -3,7 +3,9 @@ import { ValidationPipe } from '@nestjs/common'; import { AppModule } from './app.module'; async function bootstrap() { - const app = await NestFactory.create(AppModule); + const app = await NestFactory.create(AppModule, { + logger: ['error', 'warn'], + }); app.enableCors({ origin: ['https://music.anatid.net'], methods: 'GET,HEAD,PUT,PATCH,POST,DELETE',