import type { NextConfig } from "next";

const nextConfig: NextConfig = {
  images: {
    remotePatterns: [
      { protocol: "https", hostname: "i0.wp.com" },
      { protocol: "https", hostname: "wp.minhaseriefavorita.com" },
      { protocol: "https", hostname: "minhaseriefavorita.com" },
      { protocol: "https", hostname: "*.minhaseriefavorita.com" },
    ],
  },
};

export default nextConfig;
