mornie.org/astro.config.mjs
2026-06-07 04:09:20 +02:00

14 lines
324 B
JavaScript

import { defineConfig } from 'astro/config';
import rehypeKatex from 'rehype-katex';
import remarkMath from 'remark-math';
export default defineConfig({
site: 'https://mornie.org',
markdown: {
remarkPlugins: [remarkMath],
rehypePlugins: [rehypeKatex],
shikiConfig: {
theme: 'monokai',
},
},
});