| import type { NextConfig } from "next"; | |
| import path from "node:path"; | |
| const nextConfig: NextConfig = { | |
| turbopack: { | |
| root: path.resolve("."), | |
| }, | |
| images: { | |
| remotePatterns: [ | |
| { protocol: "https", hostname: "cdn-avatars.huggingface.co" }, | |
| { protocol: "https", hostname: "huggingface.co" }, | |
| { protocol: "https", hostname: "*.public.blob.vercel-storage.com" }, | |
| ], | |
| }, | |
| }; | |
| export default nextConfig; | |