next.js/examples/with-cloudinary/next.config.js
next.config.js14 lines226 B
module.exports = {
  images: {
    remotePatterns: [
      {
        protocol: "https",
        hostname: "res.cloudinary.com",
        port: "",
        pathname: "/my-account/**",
        search: "",
      },
    ],
  },
};
Quest for Codev2.0.0
/
SIGN IN