Update undici in lock file to fix dependency vuln

This commit is contained in:
dangered wolf 2024-09-23 13:32:09 +02:00
parent ba1fe88ad5
commit 56fc90264f
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58
2 changed files with 181 additions and 958 deletions

1137
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -49,7 +49,7 @@ export const cacheMiddleware = (): MiddlewareHandler => async (c, next) => {
if (cachedResponse) {
console.log('Cache hit');
return new Response(cachedResponse.body, cachedResponse);
return new Response(cachedResponse.body, cachedResponse as ResponseInit);
}
console.log('Cache miss');