Engineering

⌘K
  1. Home
  2. Docs
  3. Engineering
  4. Bunny Optimizer

Bunny Optimizer

To provide the fastest user experience while at the same time reducing traffic costs, we use Bunny Optimizer to resize images on-the-fly. There are two approaches:

  1. If we know the visual dimensions, use src= directly
  2. If the image dimensions is responsive, use srcset

To use src= directly, the example is in CampaignList component:

<ProCard>
  {campaign.coverPhotoUrl && <img src={`${campaign.coverPhotoUrl}?aspect_ratio=16:9&width=400`}
    alt={campaign.title} title={campaign.title}
    style={{objectFit: 'cover', height: 200, width: '100%'}} />}
  {!campaign.coverPhotoUrl && <div style={{height: 200}} />}
</ProCard>

Result:

The resulting image is resized by Bunny, to appropriate aspect ratio, it becomes 400 px in width, converted to WebP format (since Chrome supports it), with final size of 27 kB. The original image is 1000 px wide and 281 kB size.

How can we help?

Leave a Reply

Your email address will not be published. Required fields are marked *