technotive-math/astro.config.mjs
2025-04-06 18:20:41 +02:00

19 lines
544 B
JavaScript

import { defineConfig } from 'astro/config'
import remarkMath from "remark-math";
import rehypeKatex from "rehype-katex";
export default defineConfig({
markdown: {
remarkPlugins: [remarkMath],
rehypePlugins: [rehypeKatex], // <- new plugin
shikiConfig: {
// For more themes, visit https://shiki.style/themes
themes: { light: "min-light", dark: "night-owl" },
wrap: true,
},
},
site: "https://math.technotive.nl",
trailingSlash: 'ignore',
compressHTML: false
})