Skip to content

Commit bb31710

Browse files
jleclancheianschmitz
authored andcommittedSep 9, 2019
Disable babel-loader's cacheCompression (#7633)
1 parent 1f46136 commit bb31710

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed
 

‎packages/react-scripts/config/webpack.config.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,8 @@ module.exports = function(webpackEnv) {
429429
// It enables caching results in ./node_modules/.cache/babel-loader/
430430
// directory for faster rebuilds.
431431
cacheDirectory: true,
432-
cacheCompression: isEnvProduction,
432+
// See #6846 for context on why cacheCompression is disabled
433+
cacheCompression: false,
433434
compact: isEnvProduction,
434435
},
435436
},
@@ -450,7 +451,8 @@ module.exports = function(webpackEnv) {
450451
],
451452
],
452453
cacheDirectory: true,
453-
cacheCompression: isEnvProduction,
454+
// See #6846 for context on why cacheCompression is disabled
455+
cacheCompression: false,
454456
// @remove-on-eject-begin
455457
cacheIdentifier: getCacheIdentifier(
456458
isEnvProduction

0 commit comments

Comments
 (0)