wip bsky client for the web & android bbell.vt3e.cat
at main 10 lines 256 B view raw
1import { createApp } from 'vue' 2import { createPinia } from 'pinia' 3import { SystemBars, SystemBarsStyle } from '@capacitor/core' 4 5import './assets/main.scss' 6import App from './App.vue' 7 8const app = createApp(App) 9app.use(createPinia()) 10app.mount('#app')