import { defineConfig } from 'astro/config'; import tailwind from '@tailwindcss/vite'; import mdx from '@astrojs/mdx'; import remarkMath from 'remark-math'; import rehypeKatex from 'rehype-katex'; import rehypePrettyCode from 'rehype-pretty-code'; export default defineConfig({ integrations: [mdx()], vite: { plugins: [tailwind()] }, markdown: { remarkPlugins: [remarkMath], rehypePlugins: [ rehypeKatex, [rehypePrettyCode, { theme: 'github-dark' }] ] } });