aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/main.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.ts')
-rw-r--r--src/main.ts20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/main.ts b/src/main.ts
deleted file mode 100644
index f11674d..0000000
--- a/src/main.ts
+++ /dev/null
@@ -1,20 +0,0 @@
-/**
- * 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'
-
-const app = createApp(App)
-
-registerPlugins(app)
-
-app.mount('#app')