.
├── backend
│ ├── node_modules
│ ├── package.json
│ ├── routes
│ └── server.js
├── frontend
│ ├── node_modules
│ ├── package.json
│ ├── public
│ └── src
├── config
│ ├── .env
Above is my project structure. I have 3 folders, frontend, backend and the config folder. I have my .env file inside my config folder. What i want is to read the variables from the env file inside the config folder using react js
which is the frontend