41 lines
982 B
TypeScript
41 lines
982 B
TypeScript
import { createApp } from 'vue';
|
|
import urql, { createClient } from '@urql/vue';
|
|
import App from './App.vue';
|
|
|
|
// STYLES
|
|
import 'virtual:windi.css';
|
|
import '@hoppscotch/ui/style.css';
|
|
import '../assets/scss/themes.scss';
|
|
import '../assets/scss/styles.scss';
|
|
import '@fontsource-variable/inter';
|
|
import '@fontsource-variable/material-symbols-rounded';
|
|
import '@fontsource-variable/roboto-mono';
|
|
// END STYLES
|
|
|
|
import { HOPP_MODULES } from './modules';
|
|
import { auth } from './helpers/auth';
|
|
|
|
// Top-level await is not available in our targets
|
|
(async () => {
|
|
const app = createApp(App).use(
|
|
urql,
|
|
createClient({
|
|
url: import.meta.env.VITE_BACKEND_GQL_URL,
|
|
requestPolicy: 'network-only',
|
|
fetchOptions: () => {
|
|
return {
|
|
credentials: 'include',
|
|
};
|
|
},
|
|
})
|
|
);
|
|
|
|
// Initialize auth
|
|
await auth.performAuthInit();
|
|
|
|
// Initialize modules
|
|
HOPP_MODULES.forEach((mod) => mod.onVueAppInit?.(app));
|
|
|
|
app.mount('#app');
|
|
})();
|