From 091cc56cfbd8ce570b46b93561cd3cd72df4c740 Mon Sep 17 00:00:00 2001 From: Krishna Ayyalasomayajula Date: Tue, 2 Jun 2026 01:19:38 -0500 Subject: [PATCH] fix: remove filterMetaString callback from rehypePrettyCode config --- next.config.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/next.config.ts b/next.config.ts index 35d83b2..7449fab 100644 --- a/next.config.ts +++ b/next.config.ts @@ -33,4 +33,6 @@ const withMDX = createMDX({ }, }) -export default withMDX(nextConfig) +const config = withMDX(nextConfig) +config.turbopack = undefined +export default config