import type { NextConfig } from "next"; const nextConfig: NextConfig = { images: { remotePatterns: [ { protocol: 'https', hostname: 'img.youtube.com' }, { protocol: 'https', hostname: 'i.ytimg.com' }, { protocol: 'https', hostname: 'i.vimeocdn.com' }, { protocol: 'https', hostname: 'vumbnail.com' }, { protocol: 'https', hostname: 'images.unsplash.com' }, ], }, }; export default nextConfig;