diff --git a/src/worker.ts b/src/worker.ts index 1bc0dd9..adea0d3 100644 --- a/src/worker.ts +++ b/src/worker.ts @@ -25,7 +25,9 @@ const readData = (blob: Blob, type: DataResultType): Promise => { } const fetchBlob = async (imgUrl: string): Promise => { - const r = await fetch(imgUrl) + const r = await fetch(imgUrl, { + cache: 'no-cache', + }) return r.blob() }