feat: display articles

This commit is contained in:
Max Richter
2025-10-22 17:43:04 +02:00
parent b6bee0df53
commit 2b7b5bb12f
7 changed files with 14 additions and 18 deletions

View File

@@ -3,9 +3,8 @@ import type { ImageMetadata } from "astro";
import { Picture as AstroImage } from "astro:assets";
import { inferRemoteSize } from 'astro/assets/utils';
import { generateThumbHash, getExifData } from "@helpers/image";
import sharp from "sharp";
interface Props {
src: ImageMetadata & { fsPath?: string };
src: ImageMetadata & { fsPath?: string, src?: string };
alt: string;
pictureClass?: string;
class?: string;
@@ -16,7 +15,6 @@ interface Props {
}
async function checkImage(image: ImageMetadata) {
console.log("Checking image: ", image);
const src = image.src;
try {
if (src.startsWith("/@fs") || src.startsWith("/_astro")) return true;