Skip to content

Instantly share code, notes, and snippets.

@jayair
Created August 16, 2017 17:17
Show Gist options
  • Save jayair/db823bb5c07caad9b837d3c38b8e060c to your computer and use it in GitHub Desktop.
Save jayair/db823bb5c07caad9b837d3c38b8e060c to your computer and use it in GitHub Desktop.
Dev & Prod setup for CRA config.js
const dev = {
apiGateway: {
},
cognito: {
}
};
const prod = {
apiGateway: {
},
cognito: {
}
};
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