corrección errores

This commit is contained in:
2025-03-10 13:39:53 -06:00
parent 1b0e9b1bc5
commit c52b997db6
+1 -1
View File
@@ -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();