gh-pages
 1import DefaultTheme from 'vitepress/theme'
 2import MyLayout from './MyLayout.vue'
 3import './custom.css'
 4
 5export default {
 6  ...DefaultTheme,
 7  // override the Layout with a wrapper component that
 8  // injects the slots
 9  Layout: MyLayout
10}