LiteyukiBot/docs/.vitepress/theme/index.ts

14 lines
267 B
TypeScript
Raw Normal View History

import DefaultTheme from 'vitepress/theme'
import './liteyuki.css'
2024-09-01 10:25:37 +00:00
import StatsBar from '../../components/StatsBar.vue'
2024-09-01 12:39:51 +00:00
2024-09-01 10:25:37 +00:00
export default {
extends: DefaultTheme,
2024-09-01 14:00:17 +00:00
enhanceApp({ app }) {
app.component('StatsBar', StatsBar)
},
2024-09-01 12:39:51 +00:00
Layout: StatsBar
}