aboutsummaryrefslogtreecommitdiff
path: root/src/component
diff options
context:
space:
mode:
authorWilliam Hergès <william@herges.fr>2025-08-11 14:36:44 +0200
committerWilliam Hergès <william@herges.fr>2025-08-11 14:36:44 +0200
commite731f570cbf84dabbe156a15fe4eedea69674db5 (patch)
tree5abb402efa78bc3c4086c26051998fe8c2c79b41 /src/component
parente8a3e86272f3da820a23c53da13da93ddbb37475 (diff)
perf(images): compress again huge images
Diffstat (limited to 'src/component')
-rw-r--r--src/component/VideoAuto.astro1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/component/VideoAuto.astro b/src/component/VideoAuto.astro
index bcf23a3..abb9c68 100644
--- a/src/component/VideoAuto.astro
+++ b/src/component/VideoAuto.astro
@@ -20,7 +20,6 @@ const { src, thumb } = Astro.props;
const source = document.createElement("source");
source.src = img.getAttribute("data-video");
video.appendChild(source);
- console.log(img);
parent.insertBefore(video, img);
parent.removeChild(img);
});