Updating app version number

This commit is contained in:
2025-02-18 22:49:13 -06:00
parent d5bbc30d7d
commit 900cf82e92
3 changed files with 6 additions and 9 deletions

View File

@@ -9,7 +9,6 @@ async function bootstrap() {
const httpService = new HttpService();
const app = await NestFactory.create(AppModule);
app.enableCors();
app.setGlobalPrefix('api');
app.useGlobalFilters(new HttpExceptionFilter());
@@ -23,7 +22,6 @@ async function bootstrap() {
throw new InternalServerErrorException();
}
);
await app.listen(3000);
}