import type { NextConfig } from 'next'; const nextConfig: NextConfig = { images: { remotePatterns: [ { protocol: 'http', hostname: 'localhost', port: '4200', }, { protocol: 'https', hostname: 'venus.acatlan.unam.mx' } ], }, }; export default nextConfig;