본문 바로가기

react

Failed to load env from ~

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

 

"Failed to load env from …\.env TypeError: Cannot read properties of undefined (reading 'split')" and "Module not found: Can't

Verify canary release I verified that the issue exists in Next.js canary release Provide environment information Operating System: Platform: win32 Arch: x64 Version: Windows 10 Enterprise Binaries:...

github.com

이 분 말씀이 답이였다.

env 파일의 변수중 $를 포함하는 부분이 있었는데, "$"는 변수를 가져올때 사용하기 때문에 문자열로써 사용할려면 "\"와 함께 써줘야한다.

 

https://nextjs.org/docs/basic-features/environment-variables

반응형