mirror of
https://github.com/tachiyomiorg/website.git
synced 2025-01-05 06:51:55 +01:00
17 lines
359 B
TypeScript
17 lines
359 B
TypeScript
|
// https://vitepress.dev/guide/custom-theme
|
||
|
import { h } from 'vue'
|
||
|
import Theme from 'vitepress/theme'
|
||
|
import './style.css'
|
||
|
|
||
|
export default {
|
||
|
extends: Theme,
|
||
|
Layout: () => {
|
||
|
return h(Theme.Layout, null, {
|
||
|
// https://vitepress.dev/guide/extending-default-theme#layout-slots
|
||
|
})
|
||
|
},
|
||
|
enhanceApp({ app, router, siteData }) {
|
||
|
// ...
|
||
|
}
|
||
|
}
|