import type { NextConfig } from 'next'; const nextConfig: NextConfig = { images: { remotePatterns: [ { protocol: 'https', hostname: 'media.bambooapp.ai', pathname: '/files/**', }, { protocol: 'https', hostname: 'taylordb.ai', pathname: 'media/**', }, ], }, }; export default nextConfig;