Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/lib/perp-volume-history.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,9 @@ async function fetchHistoryRaw(): Promise<PerpVolumeHistory | null> {
try {
const res = await fetch(url, {
signal: AbortSignal.timeout(6_000),
cache: "no-store",
// Data-cache entry like the bench blobs: a no-store fetch inside an
// ISR page can flip the whole route dynamic (see #2343).
next: { revalidate: 300 },
});
if (!res.ok) return null;
return parseHistory(await res.json());
Expand Down
Loading