From 1a5bc5ba41e1581c19f834e7cf29adeabd932ba2 Mon Sep 17 00:00:00 2001 From: zhumeisongsong Date: Tue, 10 Dec 2024 16:57:33 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=90=9B=20configService=20is=20unde?= =?UTF-8?q?fined?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/users/src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/users/src/main.ts b/apps/users/src/main.ts index 532d0d5..2e51485 100644 --- a/apps/users/src/main.ts +++ b/apps/users/src/main.ts @@ -13,7 +13,7 @@ async function bootstrap() { const app = await NestFactory.create(AppModule); const configService = app.get(ConfigService); - const config = configService.get('userApp'); + const config = configService.get('usersApp'); await app.listen(config.port); Logger.log(