Skip to content

Commit 9850420

Browse files
bug fix for admin time travel
1 parent b43537b commit 9850420

4 files changed

Lines changed: 224 additions & 126 deletions

File tree

next.config.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,14 @@ const nextConfig = {
1010
assetPrefix: isProd ? '/gym' : '',
1111
images: {
1212
unoptimized: true
13+
},
14+
webpack: (config, { isServer }) => {
15+
// Disable webpack cache warnings for CSS modules
16+
config.infrastructureLogging = {
17+
level: 'error',
18+
};
19+
20+
return config;
1321
}
1422
}
1523

0 commit comments

Comments
 (0)