diff --git a/src/main.ts b/src/main.ts index 45901c4..b8c695c 100644 --- a/src/main.ts +++ b/src/main.ts @@ -3,7 +3,7 @@ import { AppModule } from './app.module'; async function bootstrap() { const app = await NestFactory.create(AppModule); - await app.listen(process.env.PORT ?? 9000); + await app.listen(process.env.PORT ?? 9090); //await app.listen(process.env.PORT ?? 3000); } bootstrap();