diff --git a/src/main.ts b/src/main.ts index 2667a52..a26a072 100644 --- a/src/main.ts +++ b/src/main.ts @@ -20,6 +20,5 @@ async function bootstrap() { .build(); const document = SwaggerModule.createDocument(app, options); SwaggerModule.setup("docs", app, document); - await app.listen(8066); -} +await app.listen(8066, '0.0.0.0');} bootstrap();