Files
vanillajs-seed/app/config.js
2020-05-26 10:37:57 +02:00

13 lines
210 B
JavaScript

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