Files
pantosite/astro.config.mjs
Anton Pogrebnjak 120ce7726f Updated dependencies
2026-04-06 19:56:05 +02:00

20 lines
499 B
JavaScript

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