mirror of
https://github.com/thomiceli/opengist.git
synced 2024-12-23 13:02:39 +00:00
13 lines
263 B
TypeScript
13 lines
263 B
TypeScript
|
import { h } from 'vue'
|
||
|
import type { Theme } from 'vitepress'
|
||
|
import DefaultTheme from 'vitepress/theme'
|
||
|
import Layout from "./Layout.vue";
|
||
|
|
||
|
export default {
|
||
|
...DefaultTheme,
|
||
|
Layout,
|
||
|
enhanceApp({ app, router, siteData }) {
|
||
|
// ...
|
||
|
}
|
||
|
} satisfies Theme
|