Stop caching stupid things and causing builds to die

This commit is contained in:
Dane Everitt 2020-12-26 10:41:25 -08:00
parent c75f89889a
commit 22687bd078
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
8 changed files with 91 additions and 113 deletions

View file

@ -28,9 +28,6 @@ module.exports = {
test: /\.tsx?$/,
exclude: /node_modules/,
loader: 'babel-loader',
options: {
cacheDirectory: !isProduction,
},
},
{
test: /\.css$/,
@ -92,7 +89,7 @@ module.exports = {
minimize: isProduction,
minimizer: [
new TerserPlugin({
cache: true,
cache: isProduction,
parallel: true,
extractComments: false,
terserOptions: {