error - Failed to load env from /~~~/.env.local TypeError: Cannot read properties of undefined (reading 'split')
env 파일에 무언가 문제가 있나보다.
dev 모드로 start 는 되길래, 우선 눈감고 배포시도해봤는데 production 모드에서는 start 실패했다.
구글링을 해보자 !
https://github.com/vercel/next.js/issues/35645#issuecomment-1086209406
이 분 말씀이 답이였다.
env 파일의 변수중 $를 포함하는 부분이 있었는데, "$"는 변수를 가져올때 사용하기 때문에 문자열로써 사용할려면 "\"와 함께 써줘야한다.
https://nextjs.org/docs/basic-features/environment-variables
반응형
'react' 카테고리의 다른 글
password protect zip file 생성기 in Next.js (0) | 2022.09.08 |
---|---|
브라우저에서 환경 변수 사용하기 In Next.js (0) | 2022.08.24 |
big integer 를 응답으로 받아보자 (0) | 2022.07.26 |
next.js http header 적용하기 (0) | 2022.07.15 |
react-toastify - custom toast 적용하기 (0) | 2022.07.15 |