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))