1

Set up .env in react project tips

 2 years ago
source link: https://dev.to/devded/set-up-env-in-react-project-tips-3i4g
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.
Dedar Alam

Posted on Oct 24

Set up .env in react project tips

Found this tips while i'm fetching issue set up .env variable in react project

  • The .env file should be in the root for you application folder. That is one level above your src folder, the same place where you have your package.json
  • The variable should be prefixed with REACT_APP_ You need to restart the server to reflect the changes in your code.
  • You should access the variable in your code like this process.env.REACT_APP_SOME_VARIABLE
  • No need to wrap your variable value in single or double quotes.
  • Do not put semicolon ; or comma , at the end of each line.

Source One
Source Two


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK