chatbot-template/next.config.ts
Jared Palmer a68eb2a011
Start on new sidebar (#456)
Co-authored-by: shadcn <m@shadcn.com>
2024-10-24 13:35:51 -07:00

14 lines
234 B
TypeScript

import type { NextConfig } from 'next';
const nextConfig: NextConfig = {
/* config options here */
images: {
remotePatterns: [
{
hostname: 'avatar.vercel.sh',
},
],
},
};
export default nextConfig;