Stop caching stupid things and causing builds to die
This commit is contained in:
parent
c75f89889a
commit
22687bd078
8 changed files with 91 additions and 113 deletions
|
@ -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: {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue