Created by: unclechu
Usage example:
PROXY=https://some-server.com npm start
Or as a script
in package.json
:
{
"scripts": {
"start": "react-scripts start",
"start:staging": "PROXY=https://some-staging-server.com react-scripts start"
},
"proxy": "https://localhost:8888",
"...": "..."
}