-
-
Notifications
You must be signed in to change notification settings - Fork 26.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Env var set to empty in shell does not override .env file #5833
Comments
Based on the discussion in #4002 it sounds like this might have something to do with |
Removed |
Thanks for checking that. Can you create an issue with |
This issue has been automatically marked as stale because it has not had any recent activity. It will be closed in 5 days if no further activity occurs. |
This issue has been automatically marked as stale because it has not had any recent activity. It will be closed in 5 days if no further activity occurs. |
This issue has been automatically closed because it has not had any recent activity. If you have a question or comment, please open a new issue. |
Is this a bug report?
yes
Environment
System:
OS: macOS 10.14
CPU: x64 Intel(R) Core(TM) i5-5257U CPU @ 2.70GHz
Binaries:
Node: 8.12.0 - /usr/local/bin/node
npm: 6.4.1 - /usr/local/bin/npm
Browsers:
Chrome: 70.0.3538.102
Firefox: 63.0
Safari: 12.0
npmPackages:
react: ^16.6.3 => 16.6.3
react-dom: ^16.6.3 => 16.6.3
react-scripts: 2.1.1 => 2.1.1
npmGlobalPackages:
create-react-app: Not Found
Steps to Reproduce
(Write your steps here:)
REACT_APP_VAR=test
in.env.production
console.log("VAR", process.env.REACT_APP_VAR);
inApp.js
REACT_APP_VAR= npm run build
serve -s build
)Expected Behavior
The console should containt:
VAR
Actual Behavior
The console contains
VAR test
Reproducible Demo
https://github.com/geritol/cra-env-repro
Similar to #4002 but the issue here is that you cannot override with an empty value the vars provided in
.env
files.The text was updated successfully, but these errors were encountered: