Hello World...

nest js dot env 환경에 따른 설정 본문

nest.js

nest js dot env 환경에 따른 설정

FaustK 2022. 8. 20. 11:00

- cross-env 설치

npm i cross-env

 

- package.json 파일에서 scripts 수정

"scripts": {
  "start:dev": "cross-env NODE_ENV=development nest start --watch",
  "start:prod": "cross-env NODE_ENV=production node dist/main",
}

 

Comments