next.js/examples/image-secure-compute/next.config.ts
next.config.ts15 lines222 B
import type { NextConfig } from "next";

const nextConfig: NextConfig = {
  images: {
    localPatterns: [
      {
        pathname: "/image-api/**",
        search: "",
      },
    ],
  },
};

export default nextConfig;
Quest for Codev2.0.0
/
SIGN IN