mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-01-19 14:13:34 +01:00
13 lines
322 B
TypeScript
13 lines
322 B
TypeScript
|
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
|