13 lines
210 B
JavaScript
13 lines
210 B
JavaScript
// env dependent config goes here
|
|
|
|
(function() {
|
|
if (typeof(window.MyApp) === 'undefined') {
|
|
window.MyApp = {};
|
|
}
|
|
|
|
MyApp.config = {
|
|
somePath: '/blabla/',
|
|
someOtherGlobalConfig: 'https://...'
|
|
};
|
|
})();
|