// @ts-check import { defineConfig } from 'astro/config'; 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({ site: 'https://pantonius.dev', markdown: { remarkPlugins: [remarkMath], rehypePlugins: [rehypeKatex] }, integrations: [mdx({ syntaxHighlight: 'shiki', shikiConfig: { theme: "dracula" }, }), sitemap(), typst()], });