import type { NextConfig } from "next"; const nextConfig: NextConfig = { /* config options here */ images: { remotePatterns: [ { protocol: 'https', hostname: 'apiilker.edoysoft.com', port: '', pathname: '/storage/v1/object/public/**', }, { protocol: 'https', hostname: 'api-weeding.edoysoft.com', port: '', pathname: '/storage/v1/object/public/**', }, { protocol: 'https', hostname: 'img.youtube.com', port: '', pathname: '/**', }, { protocol: 'https', hostname: 'images.unsplash.com', port: '', pathname: '/**', }, ], }, }; export default nextConfig;