I'm getting the following error running this on next@14.0.1:
Failed to set fetch cache https://image.mux.com/DfBLW4SB01VV6ZRT2pgy9z2q016o44p7UmZo00enfqZ6w00/thumbnail.png Error: fetch for over 2MB of data can not be cached
at IncrementalCache.set
I'm assuming this is happening because muxBlurHash(... is using fetch, and fetch is overwritten by Next to enable caching. Could we adjust the fetch call in this package to disable caching? I tried wrapping my await muxBlurHash( call in a try catch block but that doesn't seem to suppress the error.
I'm getting the following error running this on
next@14.0.1
:I'm assuming this is happening because
muxBlurHash(...
is usingfetch
, andfetch
is overwritten by Next to enable caching. Could we adjust thefetch
call in this package to disable caching? I tried wrapping myawait muxBlurHash(
call in a try catch block but that doesn't seem to suppress the error.