chore: disable turbopackFileSystemCacheForDev (#31696)

This commit is contained in:
Stephen Zhou
2026-01-29 11:47:24 +08:00
committed by GitHub
parent c30af58ac4
commit 5ce3a04a2c

View File

@@ -67,6 +67,9 @@ const nextConfig: NextConfig = {
compiler: {
removeConsole: isDev ? false : { exclude: ['warn', 'error'] },
},
experimental: {
turbopackFileSystemCacheForDev: false,
},
}
export default withBundleAnalyzer(withMDX(nextConfig))