Example e2e
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2025-03-07 22:23:32 -08:00
parent e5102000b4
commit fbc3d035d8
18 changed files with 5461 additions and 6 deletions

11
astro.config.mjs Normal file
View File

@@ -0,0 +1,11 @@
// @ts-check
import { defineConfig } from 'astro/config';
import rehypeAstroRelativeMarkdownLinks from "astro-rehype-relative-markdown-links";
// https://astro.build/config
export default defineConfig({
integrations: [],
markdown: {
rehypePlugins: [rehypeAstroRelativeMarkdownLinks],
},
});