CoolFace
Apppublic

enzostvs/zero-gpu-spaces

sourceHugging Facemitupdated 2y agoView on Hugging Face
974likes
next.config.mjs26 linesDownload Raw Back to root
1/** @type {import('next').NextConfig} */2const nextConfig = {3  images: {4    remotePatterns: [5      {6        protocol: "https",7        hostname: "huggingface.co",8      },9      {10        protocol: "https",11        hostname: "aeiljuispo.cloudimg.io",12      },13      {14        protocol: "https",15        hostname: "cdn-avatars.huggingface.co",16      },17      {18        protocol: "https",19        hostname: "www.gravatar.com",20      },21    ],22  },23};24 25export default nextConfig;26