16 lines
401 B
TypeScript
16 lines
401 B
TypeScript
import DefaultTheme from 'vitepress/theme'
|
|
import MyLayout from './MyLayout.vue'
|
|
import './styles/vars.css'
|
|
import './styles/custom.css'
|
|
|
|
export default {
|
|
...DefaultTheme,
|
|
Layout: MyLayout,
|
|
enhanceApp(ctx) {
|
|
// extend default theme custom behaviour.
|
|
DefaultTheme.enhanceApp(ctx)
|
|
|
|
// register your custom global components
|
|
// ctx.app.component('MyGlobalComponent' /* ... */)
|
|
}
|
|
} |