next.js/examples/cms-ghost/next.config.js
next.config.js14 lines245 B
/** @type {import('next').NextConfig} */
module.exports = {
  images: {
    remotePatterns: [
      {
        protocol: "https",
        hostname: "static.ghost.org",
        port: "",
        pathname: "/my-account/**",
      },
    ],
  },
};
Quest for Codev2.0.0
/
SIGN IN