Adding logger on api
All checks were successful
Music Collection CI Workflow / test (./backend) (push) Successful in 30s
Music Collection CI Workflow / test (./frontend) (push) Successful in 36s
Music Collection CI Workflow / build-and-push-images (./backend/Dockerfile, git.anatid.net/tabris/music-collection-backend, ./backend) (push) Successful in 50s
Music Collection CI Workflow / build-and-push-images (./frontend/Dockerfile, git.anatid.net/tabris/music-collection-frontend, ./frontend) (push) Successful in 1m50s
Music Collection CI Workflow / deploy (push) Successful in 25s

This commit is contained in:
Phill Pover 2025-04-07 05:04:15 +01:00
parent 2ae79ac7ff
commit 65c890eb77

View File

@ -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',