14 lines
306 B
JavaScript
14 lines
306 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
webpack: (config) => {
|
|
// Suppress cache serialization warnings
|
|
config.infrastructureLogging = {
|
|
level: 'error',
|
|
};
|
|
return config;
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|