chatbot-template/next.config.ts

15 lines
234 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 */
images: {
remotePatterns: [
{
hostname: 'avatar.vercel.sh',
},
],
2024-10-23 12:21:30 -04:00
},
};
export default nextConfig;