Some changes

This commit is contained in:
Anton Pogrebnjak
2025-09-09 20:57:22 +02:00
parent 4fcf4bd2e8
commit 5bd3063d5f
10 changed files with 3137 additions and 1604 deletions

View File

@@ -7,10 +7,13 @@ import sitemap from '@astrojs/sitemap';
// https://astro.build/config
export default defineConfig({
site: 'https://pantonius.dev',
markdown: {
remarkPlugins: [remarkMath],
rehypePlugins: [rehypeKatex]
},
integrations: [mdx(), sitemap()],
site: 'https://pantonius.dev',
markdown: {
remarkPlugins: [remarkMath],
rehypePlugins: [rehypeKatex]
},
integrations: [mdx({
syntaxHighlight: 'shiki',
shikiConfig: { theme: "dracula" },
}), sitemap()],
});