Skip to content

mdxRs (experimental)

Warning: The mdxRs configuration is an experimental feature. This configuration strategy will likely change in the future.

For experimental use with @next/mdx. Compiles MDX files using the new Rust compiler.

next.config.js
const withMDX = require('@next/mdx')()
 
/** @type {import('next').NextConfig} */
const nextConfig = {
  pageExtensions: ['ts', 'tsx', 'mdx'],
  experimental: {
    mdxRs: true,
  },
}
 
module.exports = withMDX(nextConfig)