import type { NextConfig } from "next"; const nextConfig: NextConfig = { images: { remotePatterns: [ { protocol: "https", hostname: "f.imnyang.xyz", port: "", pathname: "/profile/**", }, ], }, }; export default nextConfig;