Performance
The performance of Fumadocs MDX
Overview
Fumadocs MDX is a bundler plugin, in other words, it has a higher performance bottleneck depending on the underlying bundler.
For typical bundlers like Turbopack and Vite, it is enough for large docs sites with nearly 500+ MDX files, which is sufficient for almost all use cases.
Since Fumadocs MDX works with your bundler, you can import any files including client components in your MDX files. This allows high flexibility and ensures everything is optimized by default.
Development Server
There's two categories:
-
Lazy: Bundlers like Vite, and runtime-side loaders like Node.js & Bun, can compile MDX files on-demand when a module is requested (e.g. when
await import()is called), the dev server performance will not be significantly affected by the number of MDX files.However, ensure to enable Lazy Loading, so that lazy compilation can take effect.
-
Precompiled: Webpack & Turbopack do not support lazy compilation on dev mode, all MDX files must be precompiled ahead of time. The dev server might be slow depending of the number of MDX files to precompile.
While this is a bundler-level limitation, we recommend Local Markdown as an alternative if the slowness is a concern. It skips the bundler layer, MDX files are loaded & compiled on runtime. See the linked introduction for details.
Image Optimization
Fumadocs MDX resolves images into static imports with Remark Image. Therefore, your images will be optimized automatically for your React framework (e.g. Next.js Image API).

or in public folder
Yields:
import HelloImage from './hello.png';
<img alt="Hello" src={HelloImage} />
Production Build
In a production build, the most consuming parts are usually TypeScript docgens (the TypeScript Compiler is slow without tsgo), and the trivial work with all MDX files summed up.
Without cache, a huge amount of MDX files can cause extremely high memory usage during build. This is because:
- After MDX files are compiled into JavaScript, bundlers also have to bundle the output JavaScript files.
- Even the compilation time of each MDX file is trivial, it can be slow when summed up. For example, ~2500 files, assuming 25ms per file, cold build will take up to 62.5 seconds.
The main solution is to make the compilation on-demand, such that content is only loaded when it's being requested.
Local Markdown
As suggested in the development server section, Local Markdown is a good alternative that runs purely on runtime, without extra compilation work.
Remote Source
Create your custom content source with remoting content loading.
If your content source doesn't need to pre-compile content files, it can process them on-demand with SSG which can improve your build speed. However, you cannot leverage build time optimizations (e.g. bundling).
See Custom Source for implementing custom sources.
How is this guide?
Last updated on