fix: ensure server listens on all network interfaces in main.ts

This commit is contained in:
joelson 2026-01-05 14:05:14 -03:00
parent 6fe94a4a7c
commit 61cdae600c
1 changed files with 1 additions and 2 deletions

View File

@ -20,6 +20,5 @@ async function bootstrap() {
.build(); .build();
const document = SwaggerModule.createDocument(app, options); const document = SwaggerModule.createDocument(app, options);
SwaggerModule.setup("docs", app, document); SwaggerModule.setup("docs", app, document);
await app.listen(8066); await app.listen(8066, '0.0.0.0');}
}
bootstrap(); bootstrap();