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