import type { NextConfig } from "next"; const nextConfig: NextConfig = { /* config options here */ images: { remotePatterns: [ { protocol: "https", hostname: "api.dicebear.com", port: "", pathname: "/**", }, { protocol: "https", hostname: "static.wikia.nocookie.net", port: "", pathname: "/**", }, ], }, }; export default nextConfig;