/** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, images: { // Allow these remote hosts for next/image optimization remotePatterns: [ { protocol: 'https', hostname: 'ui-avatars.com', port: '', pathname: '/**' }, { protocol: 'https', hostname: 'www.gravatar.com', port: '', pathname: '/**' } ] } } export default nextConfig