[Vue] process.env.XXXX 사용시, 왜 undefined 가 생기지?
.env.production 파일에 아래와 같이 설정하고 # production 설정파일 NODE_ENV=production BASE_URL=/ KAKAO_URL=https://www.kakaocorp.com/ //js단 alert(`${process.env.KAKAO_URL}`); 아무리 호출해도 안되길래 구글링해서 봤더니... 역시 document는 진리! Note that only NODE_ENV, BASE_URL, and variables that start with VUE_APP_ will be statically embedded into the client bundle with webpack.DefinePlugin. It is to avoid accidentally exposing a priv..
2021.12.31