NextJSNextJS ConfigConfigure image urlsHow to configure image urls in for next Image component? /** @type {import('next').NextConfig} */ const nextConfig = { images: { remotePatterns: [ { protocol: 'https', hostname: 'res.cloudinary.com', pathname: '**', }, ], }, }; module.exports = nextConfig;PreviousMDX Cheat SheetNextCustom Themes