From a439b50201f0ea6ea576ecac432e8886f788a383 Mon Sep 17 00:00:00 2001 From: Emma Hamilton Date: Thu, 6 Aug 2026 15:51:18 +1000 Subject: [PATCH] Disable experimental.prefetchInlining --- design-system/docs/next.config.mjs | 1 + dev-projects/next-app/next.config.js | 1 + docs/next.config.js | 1 + 3 files changed, 3 insertions(+) diff --git a/design-system/docs/next.config.mjs b/design-system/docs/next.config.mjs index 8265c71bb..d8fdfb4d9 100644 --- a/design-system/docs/next.config.mjs +++ b/design-system/docs/next.config.mjs @@ -8,6 +8,7 @@ const nextConfig = { serverExternalPackages: ['esbuild'], experimental: { externalDir: true, + prefetchInlining: false, }, }; diff --git a/dev-projects/next-app/next.config.js b/dev-projects/next-app/next.config.js index a28d307cc..788425250 100644 --- a/dev-projects/next-app/next.config.js +++ b/dev-projects/next-app/next.config.js @@ -10,6 +10,7 @@ const nextConfig = { }, experimental: { externalDir: true, + prefetchInlining: false, }, async redirects() { return [ diff --git a/docs/next.config.js b/docs/next.config.js index a3693a530..3bd726238 100644 --- a/docs/next.config.js +++ b/docs/next.config.js @@ -7,6 +7,7 @@ module.exports = { typescript: { ignoreBuildErrors: true }, experimental: { externalDir: true, + prefetchInlining: false, }, async rewrites() { return [{ source: '/keystatic/:path*', destination: '/keystatic' }];