Skip to content

Instantly share code, notes, and snippets.

@twalker
Created June 14, 2015 22:34
Show Gist options
  • Save twalker/b27c7dcd482dcf389d5b to your computer and use it in GitHub Desktop.
Save twalker/b27c7dcd482dcf389d5b to your computer and use it in GitHub Desktop.
minimal-env-config.js
export default {
'localhost': {
baseApiUrl: 'http://localhost:3001/api/'
},
'mytestserver.com': {
baseApiUrl: 'http://mytestapi.com/'
},
'myprod.com': {
baseApiUrl: 'http://myprod.api/'
}
}[window.location.hostname]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment