import type { NextConfig } from "next"; const nextConfig: NextConfig = { output: "standalone", images: { remotePatterns: [ { protocol: 'https', hostname: 'images.unsplash.com', port: '', pathname: '/**', }, { protocol: 'https', hostname: 'img.youtube.com', port: '', pathname: '/**', }, { protocol: 'https', hostname: '**.fbcdn.net', port: '', pathname: '/**', }, { protocol: 'https', hostname: '**.cdninstagram.com', port: '', pathname: '/**', }, ], }, }; export default nextConfig;