Provide support for MDX.
MDX lets you use JSX in your markdown content. You can import components, such as interactive charts or alerts, and embed them within your content. This makes writing long-form content with components a blast.
You can install the plugin using the following command:
You can register the plugin in the rsbuild.config.ts
file:
After registering the plugin, you can import .mdx
or .md
files as components in your code.
In a TypeScript project, you need to add type definitions for *.mdx
files so that TypeScript can recognize them correctly.
Create env.d.ts
in the src
directory and add the following content:
If you need to customize the compilation behavior of MDX, you can use the following configs.
Options passed to @mdx-js/loader
, please refer to @mdx-js/loader documentation for detailed usage.
MdxLoaderOptions
{}
Specify the file extensions to be compiled with MDX loader, including .md files and .mdx files by default.
string[]
['.mdx', '.md']
For example, to only compile .mdx files, you can set it as: