Update `tracker/index.js`: `fetch()` with `keepalive`
parent
f4e0da481e
commit
f98320cb92
|
@ -87,6 +87,7 @@
|
||||||
method: 'POST',
|
method: 'POST',
|
||||||
body: JSON.stringify({ type, payload }),
|
body: JSON.stringify({ type, payload }),
|
||||||
headers: assign({ 'Content-Type': 'application/json' }, { ['x-umami-cache']: cache }),
|
headers: assign({ 'Content-Type': 'application/json' }, { ['x-umami-cache']: cache }),
|
||||||
|
keepalive: true,
|
||||||
})
|
})
|
||||||
.then(res => res.text())
|
.then(res => res.text())
|
||||||
.then(text => (cache = text));
|
.then(text => (cache = text));
|
||||||
|
|
Loading…
Reference in New Issue