diff --git a/src/main.ts b/src/main.ts index 5c8a85e..b85051b 100644 --- a/src/main.ts +++ b/src/main.ts @@ -5,6 +5,7 @@ async function bootstrap() { const app = await NestFactory.create(AppModule, { cors: true, }); + app.setGlobalPrefix('bc-6683-poc-board-collaboration'); await app.listen(3000); // TODO: use env variable } bootstrap();