Files
config.phundrak.com/.vitepress/theme/index.ts
T
phundrak a46efb3e3f
deploy / deploy (push) Successful in 4m45s
feat!: switch from Vuepress to Vitepress
2026-07-18 12:12:14 +02:00

11 lines
265 B
TypeScript

import { Theme } from "vitepress";
import DefaultTheme from "vitepress/theme";
import ImgFigure from "../components/ImgFigure.vue";
export default {
extends: DefaultTheme,
enhanceApp({ app }) {
app.component('ImgFigure', ImgFigure);
}
} satisfies Theme;