diff --git a/src/main.ts b/src/main.ts index 4167657..cdba7dd 100644 --- a/src/main.ts +++ b/src/main.ts @@ -5,6 +5,8 @@ import { AppModule } from './app.module'; async function bootstrap() { const app = await NestFactory.create(AppModule); + app.setGlobalPrefix('api'); + const config = new DocumentBuilder() .setTitle('Travelmarine backend') .setDescription('Backend API for Travelmarine service') @@ -12,7 +14,7 @@ async function bootstrap() { .build(); const documentFactory = () => SwaggerModule.createDocument(app, config); - SwaggerModule.setup('api', app, documentFactory); + SwaggerModule.setup('/api', app, documentFactory); await app.listen(process.env.PORT ?? 4000); }