Skip to content
This repository was archived by the owner on Jun 3, 2026. It is now read-only.
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion site/astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import { loadSidebarFromConfig } from "./src/sidebar.ts"
import { sitemapWithLastmod } from "./src/plugins/sitemap-lastmod.ts"
import AutoImport from './src/plugins/astro-auto-import.ts'
import astroExpressiveCode from "astro-expressive-code"
import remarkGfm from 'remark-gfm'
import mdx from '@astrojs/mdx';
import astroBrokenLinksChecker from './scripts/astro-broken-links-checker-index.js';

Expand Down Expand Up @@ -51,7 +52,6 @@ export default defineConfig({
},
},
}),
mdx(),
starlight({
social: [],
head: [
Expand Down Expand Up @@ -109,5 +109,6 @@ export default defineConfig({
a: './src/components/PageLink.astro'
}
}),
mdx({ remarkPlugins: [remarkGfm] }),
],
})
1 change: 1 addition & 0 deletions site/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@
"js-yaml": "^4.1.1",
"pino": "^9.7.0",
"pino-pretty": "^13.0.0",
"remark-gfm": "^4.0.1",
"remark-parse": "^11.0.0",
"remark-stringify": "^11.0.0",
"sitemapper": "^4.1.4",
Expand Down
Loading