import {EventManager} from './services/events.ts';
-import * as httpInstance from './services/http';
+import {HttpManager} from './services/http.ts';
import Translations from './services/translations';
import * as componentMap from './components';
import {ComponentStore} from './services/components.ts';
+// eslint-disable-next-line no-underscore-dangle
+window.__DEV__ = false;
+
// Url retrieval function
window.baseUrl = function baseUrl(path) {
let targetPath = path;
};
// Set events and http services on window
-window.$http = httpInstance;
+window.$http = new HttpManager();
window.$events = new EventManager();
// Translation setup