React app
Reactでアプリを作るときに、環境変数を使いたい場合、変数名は
REACT_APP_
はじまりでないといけない。
例)
code:.env.local
REACT_APP_API_URL=
http://localhost:8787
code:.env.produciton.local
REACT_APP_API_URL=
http://test.example.com
参考:
https://ralacode.com/blog/post/use-env-variables-in-react/