File tree 2 files changed +9
-0
lines changed
2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -249,6 +249,8 @@ module.exports = {
249
249
// It enables caching results in ./node_modules/.cache/babel-loader/
250
250
// directory for faster rebuilds.
251
251
cacheDirectory : true ,
252
+ // Don't waste time on Gzipping the cache
253
+ cacheCompression : false ,
252
254
highlightCode : true ,
253
255
} ,
254
256
} ,
@@ -276,6 +278,8 @@ module.exports = {
276
278
require . resolve ( 'babel-preset-react-app/dependencies' ) ,
277
279
] ,
278
280
cacheDirectory : true ,
281
+ // Don't waste time on Gzipping the cache
282
+ cacheCompression : false ,
279
283
highlightCode : true ,
280
284
} ,
281
285
} ,
Original file line number Diff line number Diff line change @@ -282,6 +282,9 @@ module.exports = {
282
282
} ,
283
283
] ,
284
284
] ,
285
+ cacheDirectory : true ,
286
+ // Save disk space when time isn't as important
287
+ cacheCompression : true ,
285
288
compact : true ,
286
289
highlightCode : true ,
287
290
} ,
@@ -305,6 +308,8 @@ module.exports = {
305
308
require . resolve ( 'babel-preset-react-app/dependencies' ) ,
306
309
] ,
307
310
cacheDirectory : true ,
311
+ // Save disk space when time isn't as important
312
+ cacheCompression : true ,
308
313
highlightCode : true ,
309
314
} ,
310
315
} ,
You can’t perform that action at this time.
0 commit comments