diff options
Diffstat (limited to 'site/src/main.ts')
| -rw-r--r-- | site/src/main.ts | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/site/src/main.ts b/site/src/main.ts new file mode 100644 index 0000000..11c062f --- /dev/null +++ b/site/src/main.ts @@ -0,0 +1,22 @@ +/** + * main.ts + * + * Bootstraps Vuetify and other plugins then mounts the App` + */ + +// Components +import App from './App.vue' + +// Composables +import { createApp } from 'vue' + +// Plugins +import { registerPlugins } from '@/plugins' + +import './assets/main.css' + +const app = createApp(App) + +registerPlugins(app) + +app.mount('#app') |
