mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-20 14:56:17 -04:00
23 lines
544 B
TypeScript
23 lines
544 B
TypeScript
import { createApp } from 'vue';
|
|
import { createPinia } from 'pinia';
|
|
import { createHead } from '@vueuse/head';
|
|
// eslint-disable-next-line import/no-unresolved
|
|
import { registerSW } from 'virtual:pwa-register';
|
|
import { plausible } from './plugins/plausible.plugin';
|
|
|
|
registerSW();
|
|
|
|
import { naive } from './plugins/naive.plugin';
|
|
|
|
import App from './App.vue';
|
|
import router from './router';
|
|
|
|
const app = createApp(App);
|
|
|
|
app.use(createPinia());
|
|
app.use(createHead());
|
|
app.use(router);
|
|
app.use(naive);
|
|
app.use(plausible);
|
|
|
|
app.mount('#app');
|