Browse Source

chore: Prod builds should not cache

Johannes Schill 7 years ago
parent
commit
76eff009d2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      scripts/webpack/webpack.prod.js

+ 1 - 1
scripts/webpack/webpack.prod.js

@@ -50,7 +50,7 @@ module.exports = merge(common, {
   optimization: {
     minimizer: [
       new TerserPlugin({
-        cache: true,
+        cache: false,
         parallel: true,
         sourceMap: true
       }),