zero-gpu-spaces / next.config.mjs
enzostvs's picture
enzostvs HF staff
initial commit
b10df03
raw
history blame
481 Bytes
/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "huggingface.co",
},
{
protocol: "https",
hostname: "aeiljuispo.cloudimg.io",
},
{
protocol: "https",
hostname: "cdn-avatars.huggingface.co",
},
{
protocol: "https",
hostname: "www.gravatar.com",
},
],
},
};
export default nextConfig;