Files
WorkManager/app/config.js
2024-12-13 08:53:01 +01: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://...'
};
})();