|
@@ -63,6 +63,7 @@ async function cacheImages(urls: string) {
|
|
|
"Cache-Control": "no-cache",
|
|
|
},
|
|
|
})
|
|
|
+ .then(() => console.debug("downloaded ", url))
|
|
|
.catch((e) => {
|
|
|
console.log(e, "cache error");
|
|
|
})
|
|
@@ -138,6 +139,7 @@ onMounted(async () => {
|
|
|
continue;
|
|
|
}
|
|
|
|
|
|
+ console.debug("start ", sheetUrl);
|
|
|
const imageRes = await httpApp.get(sheetUrl, {
|
|
|
responseType: "blob",
|
|
|
headers: {
|