/** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, swcMinify: true, experimental: { serverActions: { bodySizeLimit: '2mb', }, }, env: { NEXT_PUBLIC_API_URL: process.env.NEXT_PUBLIC_API_URL || 'http://localhost:4000', }, images: { domains: ['localhost'], }, }; module.exports = nextConfig;