From d652674f6e002cfdddad3d7470323d09ecd20fba Mon Sep 17 00:00:00 2001 From: Scott Cytacki Date: Wed, 9 Oct 2024 11:35:46 -0400 Subject: [PATCH] try to figure out why webpack cache isn't used --- v3/webpack.config.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/v3/webpack.config.js b/v3/webpack.config.js index a6179b0a4e..2b809b4db9 100644 --- a/v3/webpack.config.js +++ b/v3/webpack.config.js @@ -73,10 +73,12 @@ module.exports = (env, argv) => { path: path.resolve(__dirname, 'dist'), filename: 'assets/index.[contenthash].js', }, + infrastructureLogging: { debug: true }, cache: { buildDependencies: { config: [__filename], }, + profile: true, type: 'filesystem', }, performance: { hints: false },