1import type { NextConfig } from "next"; 2 3const nextConfig: NextConfig = { 4 images: { 5 localPatterns: [{ pathname: "/api/blob" }], 6 remotePatterns: [new URL("https://cdn.bsky.app/img/**")] 7 } 8}; 9 10export default nextConfig;