mirror of
https://github.com/notherealmarco/vue-quic-test.git
synced 2025-05-05 04:28:39 +02:00
Fix browser caching HTTP/2 responses
This commit is contained in:
parent
46ec64aa86
commit
9bb95ba780
1 changed files with 1 additions and 1 deletions
|
@ -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++
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue