mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 04:23:01 +00:00
19 lines
439 B
JavaScript
19 lines
439 B
JavaScript
import "./registerServiceWorker";
|
|
import "../src/assets/css/global.scss";
|
|
|
|
import { MotionPlugin } from "@vueuse/motion";
|
|
import { createPinia } from "pinia";
|
|
import { createApp } from "vue";
|
|
|
|
import App from "./App.vue";
|
|
import router from "./router";
|
|
import useCustomTransitions from "./transitions";
|
|
|
|
const app = createApp(App);
|
|
|
|
app.use(createPinia());
|
|
app.use(router);
|
|
app.use(MotionPlugin, useCustomTransitions);
|
|
|
|
app.mount("#app");
|