fix: ensure server listens on all network interfaces in main.ts
This commit is contained in:
parent
6fe94a4a7c
commit
61cdae600c
|
|
@ -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();
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue