Browse Source

feat: log

huangzhichao 4 tuần trước cách đây
mục cha
commit
70a90eeb3c
1 tập tin đã thay đổi với 3 bổ sung1 xóa
  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)