How Secure are Environment Variables in REACTJS that using .env in the root of project?
I am using REACT 18.2, and I have a .env file that has REACT_APP_API_URL and REACT_APP_API_SECRET so I can use them during API Calls. After I do npm run build and run the app, the variables are successfully used within the application using process.env.REACT_APP_API_URL in JS API Calls. I tried to take out that process.env.REACT_APP_API_URL… Read More How Secure are Environment Variables in REACTJS that using .env in the root of project?