From 1133ad09252f015232ac3f5f64872f1877255405 Mon Sep 17 00:00:00 2001 From: hoeppner-dataport Date: Mon, 4 Mar 2024 11:50:00 +0100 Subject: [PATCH] set global prefix (aka base path) --- src/main.ts | 1 + 1 file changed, 1 insertion(+) 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();