From 9bb95ba78031103b6515f8d127ab7e65cad0bef7 Mon Sep 17 00:00:00 2001 From: Marco Realacci Date: Fri, 29 Sep 2023 16:40:24 +0200 Subject: [PATCH] Fix browser caching HTTP/2 responses --- src/App.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.vue b/src/App.vue index 296828c..7572c08 100644 --- a/src/App.vue +++ b/src/App.vue @@ -14,7 +14,7 @@ onMounted(() => { while (count.value < 100 && proto !== "h3") { console.log(count.value) - const response = await fetch("/?id=" + count.value); + const response = await fetch("/?id=" + Math.floor(Math.random() * 1000000)); proto = performance.getEntries()[performance.getEntries().length - 1].nextHopProtocol count.value++