import type { NextConfig } from 'next'; const nextConfig: NextConfig = { reactStrictMode: true, // Standalone output for Docker deployment output: 'standalone', // For static export (nginx), uncomment: // output: 'export', // images: { unoptimized: true }, }; export default nextConfig;