next.js/examples/image-component/next.config.js
next.config.js15 lines268 B
/** @type {import('next').NextConfig} */
module.exports = {
  images: {
    remotePatterns: [
      {
        protocol: "https",
        hostname: "assets.vercel.com",
        port: "",
        pathname: "/image/upload/**",
        search: "",
      },
    ],
  },
};
Quest for Codev2.0.0
/
SIGN IN