mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-27 10:56:16 -04:00
Added vitepress for documentation. (#6270)
This commit is contained in:
parent
a5a427fb84
commit
d004d19dd7
43 changed files with 4322 additions and 27 deletions
12
doc/.vitepress/theme/index.ts
Normal file
12
doc/.vitepress/theme/index.ts
Normal file
|
@ -0,0 +1,12 @@
|
|||
import { h } from 'vue'
|
||||
import type { Theme } from 'vitepress'
|
||||
import DefaultTheme from 'vitepress/theme'
|
||||
import './styles/vars.css'
|
||||
import SvgImage from './components/SvgImage.vue'
|
||||
|
||||
export default {
|
||||
extends: DefaultTheme,
|
||||
enhanceApp({ app }) {
|
||||
app.component('SvgImage', SvgImage)
|
||||
},
|
||||
} satisfies Theme
|
Loading…
Add table
Add a link
Reference in a new issue