import type { NextConfig } from "next" const nextConfig: NextConfig = { outputFileTracingIncludes: { "/*": ["./registry/**/*"], }, images: { remotePatterns: [ { protocol: "https", hostname: "avatars.githubusercontent.com", }, { protocol: "https", hostname: "images.unsplash.com", }, ], }, } export default nextConfig