From 5ce3a04a2c7d33b9a721b4ea3607548c98528be7 Mon Sep 17 00:00:00 2001 From: Stephen Zhou <38493346+hyoban@users.noreply.github.com> Date: Thu, 29 Jan 2026 11:47:24 +0800 Subject: [PATCH] chore: disable turbopackFileSystemCacheForDev (#31696) --- web/next.config.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/web/next.config.ts b/web/next.config.ts index fc4dee3289..05f4158ac8 100644 --- a/web/next.config.ts +++ b/web/next.config.ts @@ -67,6 +67,9 @@ const nextConfig: NextConfig = { compiler: { removeConsole: isDev ? false : { exclude: ['warn', 'error'] }, }, + experimental: { + turbopackFileSystemCacheForDev: false, + }, } export default withBundleAnalyzer(withMDX(nextConfig))