File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
packages/react-scripts/config Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -429,7 +429,8 @@ module.exports = function(webpackEnv) {
429
429
// It enables caching results in ./node_modules/.cache/babel-loader/
430
430
// directory for faster rebuilds.
431
431
cacheDirectory : true ,
432
- cacheCompression : isEnvProduction ,
432
+ // See #6846 for context on why cacheCompression is disabled
433
+ cacheCompression : false ,
433
434
compact : isEnvProduction ,
434
435
} ,
435
436
} ,
@@ -450,7 +451,8 @@ module.exports = function(webpackEnv) {
450
451
] ,
451
452
] ,
452
453
cacheDirectory : true ,
453
- cacheCompression : isEnvProduction ,
454
+ // See #6846 for context on why cacheCompression is disabled
455
+ cacheCompression : false ,
454
456
// @remove -on-eject-begin
455
457
cacheIdentifier : getCacheIdentifier (
456
458
isEnvProduction
You can’t perform that action at this time.
0 commit comments