import type { NextConfig } from "next";

const nextConfig: NextConfig = {
  images: {
    // Add your API/CDN image hosts here once the backend is available,
    // e.g. { protocol: "https", hostname: "cdn.dkbazar.com" }
    // picsum.photos is used for mock home-page imagery until real product images exist.
    remotePatterns: [{ protocol: "https", hostname: "picsum.photos" }],
  },
};

export default nextConfig;
