소스 검색

feat: log

huangzhichao 2 달 전
부모
커밋
70a90eeb3c
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. 3 1
      src/main.ts

+ 3 - 1
src/main.ts

@@ -3,7 +3,9 @@ import * as dotenv from 'dotenv'
 
 import { AppModule } from './app.module'
 
-dotenv.config({ path: ['.env.local', '.env'] }).parsed
+const res = dotenv.config({ path: ['.env.local', '.env'] }).parsed
+
+console.log(res)
 
 async function bootstrap() {
   const app = await NestFactory.create(AppModule)