chatbot-template/next.config.ts
2025-09-20 12:47:10 -07:00

16 lines
244 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
experimental: {
ppr: true,
},
images: {
remotePatterns: [
{
hostname: "avatar.vercel.sh",
},
],
},
};
export default nextConfig;