Fix default server fallback

This commit is contained in:
N-Pex 2023-02-20 16:51:05 +01:00
parent b7d3a1dc95
commit 9520da87d9
2 changed files with 4 additions and 3 deletions

View file

@ -26,7 +26,8 @@ Vue.config.productionTip = false
Vue.use(VueResize);
Vue.use(VEmojiPicker);
Vue.use(matrix, { store: store, i18n: i18n });
Vue.use(config); // Use this before cleaninsights below, it depends on config!
// eslint-disable-next-line
Vue.use(config, globalThis.window.location.origin); // Use this before cleaninsights below, it depends on config!
Vue.use(analytics);
Vue.use(VueClipboard);