diff --git a/routes/api/recipes/images/[image].ts b/routes/api/recipes/images/[image].ts index 3d7ffc8..af285ae 100644 --- a/routes/api/recipes/images/[image].ts +++ b/routes/api/recipes/images/[image].ts @@ -110,6 +110,8 @@ export const handler = async ( const imageId = `${imageUrl}.${params.width}.${params.height}`; const cachedResponse = await cache.get(imageId); if (cachedResponse) { + const _r = await cachedResponse; + console.log({ cachedResponse, _r }); return (await cachedResponse).clone(); }