Added a bunch of boilerplate and started working on the flash documentation

This commit is contained in:
Relism
2024-12-15 03:17:07 +01:00
parent 0d2be4eecf
commit 308cf0971d
25 changed files with 597 additions and 94 deletions
+17
View File
@@ -0,0 +1,17 @@
// https://vitepress.dev/guide/custom-theme
import { h } from 'vue'
import DefaultTheme from 'vitepress/theme'
import './style.css'
/** @type {import('vitepress').Theme} */
export default {
extends: DefaultTheme,
Layout: () => {
return h(DefaultTheme.Layout, null, {
// https://vitepress.dev/guide/extending-default-theme#layout-slots
})
},
enhanceApp({ app, router, siteData }) {
// ...
}
}