chatbot-template/next.config.ts

18 lines
272 B
TypeScript
Raw Normal View History

2024-10-23 12:21:30 -04:00
import type { NextConfig } from 'next';
const nextConfig: NextConfig = {
/* config options here */
experimental: {
ppr: true,
},
2024-10-23 12:21:30 -04:00
images: {
remotePatterns: [
{
hostname: 'avatar.vercel.sh',
},
],
2024-10-23 12:21:30 -04:00
},
};
export default nextConfig;