/** @type {import('next').NextConfig} */ const nextConfig = { output: 'standalone', reactStrictMode: true, webpack: (config, { isServer }) => { if (isServer) { config.externals.push('_http_common') } return config } } module.exports = nextConfig