chatbot-template/next.config.ts

11 lines
174 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: [],
},
};
export default nextConfig;