Global Options
Customise Fumadocs MDX
Global Options
Shared options of Fumadocs MDX.
import { defineConfig } from 'fumadocs-mdx/config';
export default defineConfig({
  // global options
});Prop
Type
MDX Options
Customise the default MDX preset.
import { defineConfig } from 'fumadocs-mdx/config';
import rehypeKatex from 'rehype-katex';
import remarkMath from 'remark-math';
export default defineConfig({
  mdxOptions: {
    remarkPlugins: [remarkMath],
    // When order matters
    rehypePlugins: (v) => [rehypeKatex, ...v],
  },
});Or using the minimal preset:
import { defineConfig } from 'fumadocs-mdx/config';
export default defineConfig({
  mdxOptions: {
    preset: 'minimal',
    // now it accepts only MDX processor options
  },
});How is this guide?
Last updated on
