We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f46136 commit bb31710Copy full SHA for bb31710
packages/react-scripts/config/webpack.config.js
@@ -429,7 +429,8 @@ module.exports = function(webpackEnv) {
429
// It enables caching results in ./node_modules/.cache/babel-loader/
430
// directory for faster rebuilds.
431
cacheDirectory: true,
432
- cacheCompression: isEnvProduction,
+ // See #6846 for context on why cacheCompression is disabled
433
+ cacheCompression: false,
434
compact: isEnvProduction,
435
},
436
@@ -450,7 +451,8 @@ module.exports = function(webpackEnv) {
450
451
],
452
453
454
455
456
// @remove-on-eject-begin
457
cacheIdentifier: getCacheIdentifier(
458
isEnvProduction
0 commit comments