Updated dependencies

This commit is contained in:
Anton Pogrebnjak
2026-02-22 23:35:14 +01:00
parent 5bd3063d5f
commit 128af8a7d5
3 changed files with 1696 additions and 551 deletions

View File

@@ -4,6 +4,7 @@ import mdx from '@astrojs/mdx';
import remarkMath from 'remark-math'
import rehypeKatex from 'rehype-katex'
import sitemap from '@astrojs/sitemap';
import { typst } from 'astro-typst';
// https://astro.build/config
export default defineConfig({
@@ -15,5 +16,5 @@ export default defineConfig({
integrations: [mdx({
syntaxHighlight: 'shiki',
shikiConfig: { theme: "dracula" },
}), sitemap()],
}), sitemap(), typst()],
});