0

Disclaimer

// Force eager-load for first 3 product images document.querySelectorAll('.product-image:not(.oct-lazy)').forEach((img, index) => { if(index < 3) { img.loading = 'eager'; img.classList.remove('oct-lazy'); } });