diff --git a/web/next.config.ts b/web/next.config.ts index f40ee116c5..24ec4a9924 100644 --- a/web/next.config.ts +++ b/web/next.config.ts @@ -80,6 +80,9 @@ const nextConfig: NextConfig = { compiler: { removeConsole: isDev ? false : { exclude: ['warn', 'error'] }, }, + experimental: { + turbopackFileSystemCacheForDev: false, + }, } export default withBundleAnalyzer(withMDX(nextConfig))