You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
398 B
TypeScript

import 'virtual:svg-icons-register'
import './styles/tailwind.css'
import './styles/global.css'
import { createApp } from 'vue'
import App from './App.vue'
function injectMeta() {
const meta = document.createElement('meta')
meta.name = 'naive-ui-style'
document.head.appendChild(meta)
}
function bootstrap() {
const app = createApp(App)
injectMeta()
app.mount('#app')
}
bootstrap()