From b6bc631d23ecbbac6cd35fa2c96b34ad59c05f34 Mon Sep 17 00:00:00 2001 From: Ilija Lazoroski Date: Tue, 12 Apr 2022 16:17:48 +0200 Subject: [PATCH] UI: Remove caching from webpack Every build needs to start on clean on production. --- monkey/monkey_island/cc/ui/webpack.config.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/monkey/monkey_island/cc/ui/webpack.config.js b/monkey/monkey_island/cc/ui/webpack.config.js index bf691a506..1179e6391 100644 --- a/monkey/monkey_island/cc/ui/webpack.config.js +++ b/monkey/monkey_island/cc/ui/webpack.config.js @@ -10,10 +10,6 @@ const smp = new SpeedMeasurePlugin({ disable: isProduction }); module.exports = smp.wrap({ mode : isProduction ? 'production' : 'development', - cache: { - type: 'filesystem', - memoryCacheUnaffected: true - }, module: { rules: [ { test: /\.tsx?$/,