chore: switch from vuepress to vitepress
deploy / deploy (push) Failing after 7m39s

This commit is contained in:
2026-07-11 11:41:14 +02:00
parent 3aa57fcdda
commit b9558d4792
96 changed files with 491 additions and 2895 deletions
+10
View File
@@ -0,0 +1,10 @@
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;