diff --git a/src/main.ts b/src/main.ts index bf73eaa..e6082c2 100644 --- a/src/main.ts +++ b/src/main.ts @@ -4,6 +4,6 @@ import { AppModule } from './app.module'; async function bootstrap(): Promise { const app = await NestFactory.create(AppModule); app.enableCors(); - await app.listen(5100); + await app.listen(3000); } bootstrap();