maciejpedzi.ch/astro.config.mjs

16 lines
420 B
JavaScript

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]
}
});