mirror of
https://github.com/koel/koel
synced 2024-12-19 17:13:09 +00:00
8 lines
224 B
TypeScript
8 lines
224 B
TypeScript
import { createApp } from 'vue'
|
|
import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome'
|
|
import '@/../css/remote.pcss'
|
|
import App from './App.vue'
|
|
|
|
createApp(App)
|
|
.component('Icon', FontAwesomeIcon)
|
|
.mount('#app')
|