diff --git a/src/main.ts b/src/main.ts index 5a5fd57..2434f5e 100644 --- a/src/main.ts +++ b/src/main.ts @@ -3,8 +3,12 @@ import { NestFactory } from '@nestjs/core'; import { AppModule } from './app.module'; async function bootstrap() { - const app = await NestFactory.create(AppModule); - app.useGlobalPipes(new ValidationPipe()); - await app.listen(3000); + try { + const app = await NestFactory.create(AppModule); + app.useGlobalPipes(new ValidationPipe()); + await app.listen(3000); + } catch (e) { + throw e; + } } bootstrap();