mirror of
https://github.com/thomiceli/opengist.git
synced 2024-12-23 13:02:39 +00:00
6d31ef9732
* Add vitepress for docs * some fix * Use vitepress and update docs * Use vitepress and update docs * Update README.md * Add favicon * Add docs by @jiriks74 Co-authored-by: jiriks74 <jiri@stefka.eu> --------- Co-authored-by: jiriks74 <jiri@stefka.eu>
12 lines
263 B
TypeScript
12 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
|