signup / next.config.ts
burtenshaw's picture
burtenshaw HF Staff
Deploy Next.js signup Space
654b283 verified
raw
history blame contribute delete
444 Bytes
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;