Skip to content

Commit 28e5d2e

Browse files
committed
Fix profile not found due to cache
1 parent 21def91 commit 28e5d2e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

web/next.config.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@ module.exports = {
5454
webpack: (config, { dev }) => {
5555
console.log({dev})
5656
if (dev) {
57-
config.cache = { type: 'filesystem' };
58-
config.infrastructureLogging = { level: 'warn' };
59-
config.stats = 'minimal';
57+
// config.cache = { type: 'filesystem' };
58+
// config.infrastructureLogging = { level: 'warn' };
59+
// config.stats = 'minimal';
6060
}
6161
config.module.rules.push({
6262
test: /\.svg$/,

0 commit comments

Comments
 (0)