import type { NextConfig } from 'next';
const nextConfig: NextConfig = {
reactStrictMode: true,
// Note: Using default mode (not standalone) to avoid SSR issues with client components
// For Docker, we'll use regular server mode which works fine
};
export default nextConfig;