Files
config.phundrak.com/.vitepress/theme/index.ts
T
phundrak 9f8932aae1
deploy / deploy (push) Failing after 7m20s
feat!: switch from Vuepress to Vitepress
2026-07-18 11:23:04 +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;