Add experimental Rust MDX parser

This commit is contained in:
Marcus Blättermann 2022-11-10 02:46:35 +01:00
parent 08f9d90aa3
commit a4ee13175d
No known key found for this signature in database
GPG Key ID: A1E1F04008AC450D

View File

@ -3,6 +3,9 @@ const withMDX = require('@next/mdx')({
options: {
providerImportSource: '@mdx-js/react',
},
experimental: {
mdxRs: true,
},
})
/** @type {import('next').NextConfig} */