import { defineConfig } from 'astro/config'; import mdx from '@astrojs/mdx'; import remarkMath from 'remark-math'; import rehypeMathjax from 'rehype-mathjax'; import sitemap from '@astrojs/sitemap'; // https://astro.build/config export default defineConfig({ site: 'https://maciejpedzi.ch', integrations: [mdx(), sitemap()], markdown: { remarkPlugins: [remarkMath], rehypePlugins: [rehypeMathjax] } });