pad.libre-service.eu-etherpad/doc/.vitepress/theme/index.ts
2024-03-23 20:58:05 +01:00

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