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