Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dennisschneider/0061586350a29535e3e1f1a442ecfddb to your computer and use it in GitHub Desktop.
Save dennisschneider/0061586350a29535e3e1f1a442ecfddb to your computer and use it in GitHub Desktop.
Configure app based on environment variable
const dev = {
API_ENDPOINT: ""
};
const prod = {
API_ENDPOINT: ""
};
const config = process.env.REACT_APP_STAGE === "production" ? prod : dev;
export default {
...config
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment