Changed environment variable name for API port.

This commit is contained in:
Tom
2025-06-20 14:46:50 +00:00
parent 03286c2013
commit 0bfdded52f

View File

@ -14,6 +14,6 @@ async function bootstrap() {
}));
app.useLogger(app.get(Logger));
app.useGlobalInterceptors(new LoggerErrorInterceptor());
await app.listen(process.env.PORT ?? 3001);
await app.listen(process.env.WEB_API_PORT ?? 3001);
}
bootstrap();