import { Sib } from 'https://cdn.skypack.dev/@startinblox/core@0.15'; export const HublAutoLogin = { name: 'hubl-auto-login', created() { document .querySelectorAll(".loggedIn-loader") .forEach(el => (el.style.display = "flex")); window.dispatchEvent( new CustomEvent('requestNavigation', { detail: { route: window.hubl.getRoute("dashboard", true) } }), ); document.querySelector("sib-auth").login(); } } Sib.register(HublAutoLogin);