I want to setup development & production environment in ReactJs
I have created two files .env.production & .env.development in root
Structure looks like below
root
|
.env.production
.env.development
I want to change this to
root
|
enviroments
|
.env.production
.env.development
In simple words i want to change the default location of .env files in react js. How can i do that please help.