import type { NextConfig } from "next";

const nextConfig: NextConfig = {
  reactStrictMode: false,
  images: {
    remotePatterns: [
      {
        protocol: "https",
        hostname: "quality-web-developer.com",
      },
      {
        protocol: "https",
        hostname: "www.rkda.org",
      },
    ],
  },
};

export default nextConfig;