import type { NextConfig } from "next";

const nextConfig: NextConfig = {
  reactStrictMode: true,
  typedRoutes: true,
  images: {
    remotePatterns: [
      {
        protocol: "https",
        hostname: "cdn.meticulousresearch.com",
        port: "",
        pathname: "/**",
      },
    ],
  },
};

export default nextConfig;
