Skip to content

Commit 96e592c

Browse files
committed
Cache busting
1 parent 46daf84 commit 96e592c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/routes/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@
133133
134134
async function loadStatusData() {
135135
try {
136-
const response = await fetch('/data/status.json');
136+
const response = await fetch(`/data/status.json?t=${Date.now()}`);
137137
if (!response.ok) {
138138
throw new Error(`Failed to load status data: ${response.status}`);
139139
}

0 commit comments

Comments
 (0)