From c52b997db657d1617b3a8a9393d209f74ea0c37f Mon Sep 17 00:00:00 2001 From: evenegas Date: Mon, 10 Mar 2025 13:39:53 -0600 Subject: [PATCH] =?UTF-8?q?correcci=C3=B3n=20errores?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.ts b/src/main.ts index c6207bd..f76bc8d 100644 --- a/src/main.ts +++ b/src/main.ts @@ -3,6 +3,6 @@ import { AppModule } from './app.module'; async function bootstrap() { const app = await NestFactory.create(AppModule); - await app.listen(process.env.PORT ?? Number(process.env.app)); + await app.listen(process.env.PORT ?? 3000); } bootstrap();