Skip to content

Instantly share code, notes, and snippets.

@fessacchiotto
Created April 26, 2022 07:59
Show Gist options
  • Save fessacchiotto/bbe0ea0c7f586d55b333e6c17d4614b4 to your computer and use it in GitHub Desktop.
Save fessacchiotto/bbe0ea0c7f586d55b333e6c17d4614b4 to your computer and use it in GitHub Desktop.
import "vuetify/styles"; // Global CSS has to be imported
import { createApp } from "vue";
import {vuetify, i18n} from "./plugins/vuetify";
import { loadFonts } from "./plugins/webfontloader";
import App from "./App.vue";
import { interceptorsSetup } from "../../common/interceptors.js";
import { router } from "./router";
loadFonts();
interceptorsSetup();
createApp(App)
.use(router)
.use(vuetify)
.use(i18n)
.mount("#app");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment