chatbot-template/next.config.ts
Leyo fd446d14be
Fixing next/image` Un-configured Host error while uploading images (#1254)
Co-authored-by: Hayden Bleasel <hello@haydenbleasel.com>
2025-10-31 17:15:51 -07:00

21 lines
414 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
experimental: {
ppr: true,
},
images: {
remotePatterns: [
{
hostname: "avatar.vercel.sh",
},
{
protocol: "https",
//https://nextjs.org/docs/messages/next-image-unconfigured-host
hostname: "*.public.blob.vercel-storage.com",
},
],
},
};
export default nextConfig;