import type { NextConfig } from "next";

const nextConfig: NextConfig = {
  // Allow external images if needed for OG images
  images: {
    remotePatterns: [
      {
        protocol: "https",
        hostname: "sportsclaw.guru",
      },
      {
        protocol: "https",
        hostname: "blog.sportsclaw.guru",
      },
    ],
  },
  // Ensure trailing slashes are not enforced
  trailingSlash: false,
};

export default nextConfig;
