import type { NextConfig } from "next"; const nextConfig: NextConfig = { /* config options here */ images: { remotePatterns: [ { protocol: "http", hostname: "verifypersonapi.baraveli.dev", pathname: "/images/**", search: "", port: "", }, { protocol: "https", hostname: "i.pravatar.cc", pathname: "/300/**", search: "", port: "", }, ], }, output: "standalone", }; export default nextConfig;