aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/main.ts
diff options
context:
space:
mode:
authorArda Serdar Pektezol <1669855+pektezol@users.noreply.github.com>2023-01-06 23:55:12 +0300
committerArda Serdar Pektezol <1669855+pektezol@users.noreply.github.com>2023-01-06 23:55:12 +0300
commit4820c7696db3c54959258b1a5b00c77e1246cbd7 (patch)
tree179edfca03618395939df1c3afccf2c90c64d424 /frontend/src/main.ts
parent(#20) successful integration of demo upload to drive (diff)
downloadlphub-4820c7696db3c54959258b1a5b00c77e1246cbd7.tar.gz
lphub-4820c7696db3c54959258b1a5b00c77e1246cbd7.tar.bz2
lphub-4820c7696db3c54959258b1a5b00c77e1246cbd7.zip
what the fuck is this mess (#21)
Diffstat (limited to 'frontend/src/main.ts')
-rw-r--r--frontend/src/main.ts14
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 @@
1import { createApp } from 'vue'
2import { createPinia } from 'pinia'
3
4import App from './App.vue'
5import router from './router'
6
7import './assets/main.css'
8
9const app = createApp(App)
10
11app.use(createPinia())
12app.use(router)
13
14app.mount('#app')