From 19e7bca63b8972a31592c1f7048d365f5414cb77 Mon Sep 17 00:00:00 2001 From: Mauricio Siu Date: Sun, 7 Dec 2025 06:10:49 -0600 Subject: [PATCH] refactor: remove experimental serverExternalPackages configuration - Removed the experimental serverExternalPackages setting for 'shiki' and 'fumadocs-openapi' from the Next.js configuration file. --- apps/docs-new/next.config.mjs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/apps/docs-new/next.config.mjs b/apps/docs-new/next.config.mjs index c5adf48..7c2f777 100644 --- a/apps/docs-new/next.config.mjs +++ b/apps/docs-new/next.config.mjs @@ -5,9 +5,7 @@ const withMDX = createMDX(); /** @type {import('next').NextConfig} */ const config = { reactStrictMode: true, - experimental: { - serverExternalPackages: ['shiki', 'fumadocs-openapi'], - }, + }; export default withMDX(config);