diff --git a/src/main.ts b/src/main.ts index 6a83fd5..4d8df81 100644 --- a/src/main.ts +++ b/src/main.ts @@ -5,6 +5,6 @@ import { cors } from './common/utils/cors.utils'; async function bootstrap() { const app = await NestFactory.create(AppModule); app.enableCors(cors); - await app.listen(3000); + await app.listen(3069); } bootstrap();