Skip to content

Commit 9a61c09

Browse files
committed
fix: disable github caching
1 parent 1da7e71 commit 9a61c09

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ export function report(
103103
const start = performance.now();
104104
try {
105105
const headers = new Headers(resp.headers);
106-
headers.set("ga4", "success");
106+
headers.set("cache-control", "max-age=0, no-cache, no-store, must-revalidate");
107107
res = new Response(resp.body, { status: resp.status, headers });
108108
return res;
109109
} catch (e) {

0 commit comments

Comments
 (0)