import type { NextConfig } from 'next';

const nextConfig: NextConfig = {
    reactStrictMode: true,
    images: {
        remotePatterns: [
            { protocol: 'https', hostname: 'jamalitech.com', pathname: '/wp-content/**' },
            { protocol: 'https', hostname: 'staging.jamalitech.com', pathname: '/wp-content/**' },
            { protocol: 'https', hostname: 'secure.gravatar.com' },
        ],
        formats: ['image/avif', 'image/webp'],
    },
    experimental: {
        // Tailwind 4 + Framer Motion play nicely with Turbopack
    },
};

export default nextConfig;
