| import type { NextConfig } from "next"; | |
| const nextConfig: NextConfig = { | |
| output: "standalone", | |
| images: { | |
| remotePatterns: [ | |
| { | |
| protocol: "https", | |
| hostname: "cdn-avatars.huggingface.co", | |
| }, | |
| { | |
| protocol: "https", | |
| hostname: "www.gravatar.com", | |
| }, | |
| { | |
| protocol: "https", | |
| hostname: "avatars.githubusercontent.com", | |
| }, | |
| ], | |
| }, | |
| }; | |
| export default nextConfig; | |