I'm working on an event booking website where customers can book birthday decorations, balloon decoration services, and anniversary setups online. The pages contain many high-resolution images, and the loading speed has become slow. What are the best ways to optimize images, caching, and Core Web Vitals without affecting quality?
Loading
Sam HobbsPosted Aug 4, 2026, 10:50 PM
In addition to what has been said, you can use a CDN like Cloudflare if you are not already. You can enable Polish.
Hari LakkakulaPosted Aug 4, 2026, 1:47 PM
Deploy an Image CDN / Dynamic Resizing Service
Offload compression, format conversion, and resizing to a specialized Image CDN (such as Cloudinary, Imgix, or Cloudflare Image Resizing).
These services automatically detect the user's browser capabilities and deliver the smallest possible file format at the correct dimensions on the fly.
They cache optimized images at edge locations globally, reducing server load and latency.
Snesh PrajapatiPosted Aug 4, 2026, 4:38 AM
The following points can help improve the loading speed:
Resize Images Before Uploading
Serve different image sizes based on the user's screen Example :
Load Images on demand
Use WebP/AVIF
Use responsive images with
srcsetso different devices receive appropriately sized images