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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 0 deletions

View File

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