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