From c46edbfdca68a03f85e971af7b140fd9df0faba4 Mon Sep 17 00:00:00 2001 From: sdraris Date: Tue, 30 Sep 2025 19:59:44 +0200 Subject: [PATCH] change of swagger path to /api/docs --- src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.ts b/src/main.ts index ad35b3b..4ebc207 100644 --- a/src/main.ts +++ b/src/main.ts @@ -45,7 +45,7 @@ async function bootstrap() { .build(); const document = SwaggerModule.createDocument(app, config); - SwaggerModule.setup('docs', app, document); + SwaggerModule.setup('api/v1/docs', app, document);