Commit 45be8908 by Xianquan Committed by GitHub

chore: disable turbopack dev/build fs cache (#6939)

parent e30f0e35
Subproject commit 78d6cc129c75f2fc123b92f5016af5edb632ad14 Subproject commit 52f99301f3704a603e8a692988f8bcb40f4a0f21
...@@ -87,7 +87,10 @@ const nextConfig: NextConfig = { ...@@ -87,7 +87,10 @@ const nextConfig: NextConfig = {
// 按页面拆分 CSS chunk,减少首屏 CSS 体积 // 按页面拆分 CSS chunk,减少首屏 CSS 体积
cssChunking: 'strict', cssChunking: 'strict',
// 减少内存占用 // 减少内存占用
memoryBasedWorkersCount: true memoryBasedWorkersCount: true,
turbopackFileSystemCacheForBuild: false,
turbopackFileSystemCacheForDev: false
}, },
outputFileTracingRoot: path.join(__dirname, '../../'), outputFileTracingRoot: path.join(__dirname, '../../'),
// Exclude build-time-only packages from standalone output file tracing // Exclude build-time-only packages from standalone output file tracing
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment