import type { NextConfig } from "next"; module.exports = { images: { remotePatterns: [ { protocol: 'https', hostname: 'www.brownells.com', port: '', pathname: '/**', search: '', }, { protocol: 'https', hostname: 'assets.example.com', port: '', pathname: '/**', search: '', }, { protocol: 'https', hostname: 'images.unsplash.com', port: '', pathname: '/**', }, { protocol: 'https', hostname: 'tailwindui.com', port: '', pathname: '/plus/img/logos/**', }, { protocol: 'http', hostname: 'i1.avlws.com', port: '', pathname: '/**', } ], } };