diff --git a/apps/api/src/main.ts b/apps/api/src/main.ts index 3487065a..be865fc4 100644 --- a/apps/api/src/main.ts +++ b/apps/api/src/main.ts @@ -48,7 +48,7 @@ async function bootstrap() { const port = process.env.PORT || 3333; await app.startAllMicroservices(); - await app.listen(port); + await app.listen(port, '0.0.0.0'); Logger.log( `🚀 Application is running on: http://localhost:${port}/${globalPrefix}` );