bloginamatrix.xyz/astro.config.mjs
2024-01-11 17:42:43 -05:00

25 lines
690 B
JavaScript

import { defineConfig } from 'astro/config';
import mdx from '@astrojs/mdx';
import sitemap from '@astrojs/sitemap';
import remarkMath from 'remark-math';
import rehypeKatex from 'rehype-katex';
import rehypeMermaid from 'rehype-mermaid';
import remarkRehype from 'remark-rehype';
export default defineConfig({
site: 'https://bloginamatrix.xyz',
integrations: [
mdx({
extendMarkdownConfig: true,
optimize: true,
remarkPlugins: [remarkMath, remarkRehype],
rehypePlugins: [rehypeKatex, rehypeMermaid]
}),
sitemap()],
markdown: {
gfm: true,
remarkPlugins: [remarkMath, remarkRehype],
rehypePlugins: [rehypeKatex, rehypeMermaid],
}
});