I have a standard react app with the canonical package.json entry
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
...
}
I found that to pass an argument to react-scripts scenario I have simply to prepend it with
"scripts": {
"start": "REACT_APP_LOG_URL=http://example.com react-scripts start",
...
}
And then in index.js file I can get this argument with
const logUrl = process.env.REACT_APP_LOG_URL;
console.log(`Logging to ${logUrl}`);
But I get an error
'REACT_APP_LOG_URL' is not recognized as an internal or external command,
operable program or batch file.
Where am I wrong?
React-dotenv package can solve the problem. https://github.com/jeserodz/react-dotenv/blob/main/README.md
Other scenarios shouldn't be changed.
so we can differentiate this 2 cases (in second case our variable will be undefined)
Then you can get this value with env variable:
then somewhere inside a component: