Skip to content

Instantly share code, notes, and snippets.

@evolkmann
Created April 24, 2018 16:37
Show Gist options
  • Save evolkmann/bf41b179f51e35a456b0580225688fbb to your computer and use it in GitHub Desktop.
Save evolkmann/bf41b179f51e35a456b0580225688fbb to your computer and use it in GitHub Desktop.
/**
* Represents the environment variables for PRODUCTION environment.
*/
(function (window) {
'use strict';
window['ENVIRONMENT'] = {
backendUrl: 'https://prod.my-backend.com'
};
})(window);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment