From d356fcc16eee20039a5a996e6c1e030722e4d275 Mon Sep 17 00:00:00 2001 From: Oleg Shvartsman Date: Mon, 6 Mar 2023 16:02:24 +0000 Subject: [PATCH] fix format nx check? --- apps/api/src/main.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/apps/api/src/main.ts b/apps/api/src/main.ts index 81a33c231..03c265c6c 100644 --- a/apps/api/src/main.ts +++ b/apps/api/src/main.ts @@ -11,8 +11,7 @@ async function bootstrap() { const configService = configApp.get(ConfigService); const NODE_ENV = - configService.get<'development' | 'production'>('NODE_ENV') ?? - 'production'; + configService.get<'development' | 'production'>('NODE_ENV') ?? 'production'; const app = await NestFactory.create(AppModule, { logger: