chatbot-template/next.config.ts
Jeremy 50bd4604b6
feat: support image outputs during code execution (#674)
Co-authored-by: Bailey Simrell <baileysimrell@gmail.com>
2025-01-08 00:00:21 +05:30

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;