fix: add cache option no-cache to prevent caching

This commit is contained in:
p-sw 2024-08-04 16:23:53 +09:00
parent 96d64e57bb
commit 3d55a98821

View File

@ -4,7 +4,7 @@ export async function safeFetch(
| { message: string; ok: false; response: Response }
| { ok: true; response: Response }
> {
const response = await fetch(url);
const response = await fetch(url, { cache: "no-cache" });
if (response.ok) {
return {
ok: true,