mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2026-03-01 12:44:37 +00:00
9 lines
210 B
TypeScript
9 lines
210 B
TypeScript
import '@ocelot-social/ui/style.css'
|
|
import { createApp } from 'vue'
|
|
|
|
import App from './App.vue'
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unsafe-argument
|
|
const app = createApp(App)
|
|
app.mount('#app')
|