From a4ee13175d0a8b20e4f318bffbc111e97cc76f49 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcus=20Bl=C3=A4ttermann?= Date: Thu, 10 Nov 2022 02:46:35 +0100 Subject: [PATCH] Add experimental Rust MDX parser --- website/next.config.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/website/next.config.js b/website/next.config.js index 305b391cf..bd738d33f 100644 --- a/website/next.config.js +++ b/website/next.config.js @@ -3,6 +3,9 @@ const withMDX = require('@next/mdx')({ options: { providerImportSource: '@mdx-js/react', }, + experimental: { + mdxRs: true, + }, }) /** @type {import('next').NextConfig} */