/** @type {import('next').NextConfig} */ // const nextConfig = {}; const nextConfig = { images: { remotePatterns: [ { protocol: 'https', hostname: 'api.blogfortis.com', pathname: '/**', }, { protocol: 'http', hostname: '192.168.168.57', // ← Add your new host here }, { protocol: 'https', hostname: 'api.trucktrailerdeals.com', }, ], }, // Allow cross-origin requests from this domain during development allowedDevOrigins: ['https://trucktrailerdeals.com', 'https://www.trucktrailerdeals.com'], }; process.env.NODE_TLS_REJECT_UNAUTHORIZED = "0"; // this i add for devlopment remove before make production build export default nextConfig;