diff options
Diffstat (limited to 'frontend/src/main.ts')
| -rw-r--r-- | frontend/src/main.ts | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/frontend/src/main.ts b/frontend/src/main.ts deleted file mode 100644 index 4fb24b7..0000000 --- a/frontend/src/main.ts +++ /dev/null | |||
| @@ -1,14 +0,0 @@ | |||
| 1 | import { createApp } from 'vue' | ||
| 2 | import { createPinia } from 'pinia' | ||
| 3 | |||
| 4 | import App from './App.vue' | ||
| 5 | import router from './router' | ||
| 6 | |||
| 7 | import './assets/main.css' | ||
| 8 | |||
| 9 | const app = createApp(App) | ||
| 10 | |||
| 11 | app.use(createPinia()) | ||
| 12 | app.use(router) | ||
| 13 | |||
| 14 | app.mount('#app') | ||