chatbot-template/next.config.ts

22 lines
414 B
TypeScript
Raw Normal View History

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