maciejpedzi.ch/astro.config.mjs

16 lines
420 B
JavaScript
Raw Normal View History

2023-04-19 19:18:50 +02:00
import { defineConfig } from 'astro/config';
import mdx from '@astrojs/mdx';
import remarkMath from 'remark-math';
import rehypeMathjax from 'rehype-mathjax';
2023-04-19 19:18:50 +02:00
import sitemap from '@astrojs/sitemap';
// https://astro.build/config
export default defineConfig({
2023-04-26 10:22:06 +02:00
site: 'https://maciejpedzi.ch',
integrations: [mdx(), sitemap()],
markdown: {
remarkPlugins: [remarkMath],
rehypePlugins: [rehypeMathjax]
}
2023-04-19 19:18:50 +02:00
});