Skip to content
This repository has been archived by the owner on Aug 23, 2024. It is now read-only.

Commit

Permalink
redisable avif in blind hope of it fixing things
Browse files Browse the repository at this point in the history
  • Loading branch information
georgebaskervil committed Jun 8, 2024
1 parent b9ed902 commit 1aef5cf
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/components/eagerpicturesect.astro
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ const images = getImages();
{images.slice(start, end).map((image) => (
<div class="image-container">
<picture>
<source srcset={`/image-assets/${image}.avif`} type="image/avif" />
<source srcset={`/image-assets/${image}.webp`} type="image/webp" />
<Image
src={`/image-assets/${image}.png`}
Expand Down
1 change: 0 additions & 1 deletion src/components/picturesect.astro
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ const images = getImages();
{images.slice(start, end).map((image) => (
<div class="image-container">
<picture>
<source srcset={`/image-assets/${image}.avif`} type="image/avif" />
<source srcset={`/image-assets/${image}.webp`} type="image/webp" />
<Image
src={`/image-assets/${image}.png`}
Expand Down
1 change: 0 additions & 1 deletion src/pages/pictures.astro
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ const images = getImages();
{images.map((image) => (
<div class="image-container">
<picture>
<source srcset={`/image-assets/${image}.avif`} type="image/avif" />
<source srcset={`/image-assets/${image}.webp`} type="image/webp" />
<Image
src={`/image-assets/${image}.png`}
Expand Down

0 comments on commit 1aef5cf

Please sign in to comment.