/** @type {import('next').NextConfig} */ module.exports = { reactStrictMode: true, webpack: (config, { isServer }) => { if (!isServer) { config.resolve.fallback = { fs: false, zlib: false, } } return config; } }