diff --git a/frontend/src/fetchers/index.js b/frontend/src/fetchers/index.js index 5b3a26eba6..edb25fcd03 100644 --- a/frontend/src/fetchers/index.js +++ b/frontend/src/fetchers/index.js @@ -10,6 +10,10 @@ export class HTTPError extends Error { export const get = async (url) => { const res = await fetch(url, { credentials: 'same-origin', + headers: { + 'Cache-Control': 'no-cache', + Pragma: 'no-cache', + }, }); if (!res.ok) { throw new HTTPError(res.status, res.statusText);