From 28e5d2e3f2018e5ef8fac03157dc8dc913f011bc Mon Sep 17 00:00:00 2001 From: MartinBraquet Date: Sat, 25 Oct 2025 21:40:29 +0200 Subject: [PATCH] Fix profile not found due to cache --- web/next.config.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/web/next.config.js b/web/next.config.js index 6a02c7fc..fe7961d3 100644 --- a/web/next.config.js +++ b/web/next.config.js @@ -54,9 +54,9 @@ module.exports = { webpack: (config, { dev }) => { console.log({dev}) if (dev) { - config.cache = { type: 'filesystem' }; - config.infrastructureLogging = { level: 'warn' }; - config.stats = 'minimal'; + // config.cache = { type: 'filesystem' }; + // config.infrastructureLogging = { level: 'warn' }; + // config.stats = 'minimal'; } config.module.rules.push({ test: /\.svg$/,