From 8fd906223ced6e8424d7b7b896919452eb8db95e Mon Sep 17 00:00:00 2001 From: MartinBraquet Date: Sat, 25 Oct 2025 23:00:40 +0200 Subject: [PATCH] Re enable dev 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 fe7961d3..6a02c7fc 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$/,