diff --git a/src/plugins/helpers/fetch.ts b/src/plugins/helpers/fetch.ts index f87b6fc9c..489b18802 100644 --- a/src/plugins/helpers/fetch.ts +++ b/src/plugins/helpers/fetch.ts @@ -9,6 +9,12 @@ type FetchInit = { const makeInit = (init?: FetchInit) => { const defaultHeaders = { + 'Connection': 'keep-alive', + 'Accept': '*/*', + 'Accept-Language': '*', + 'Sec-Fetch-Mode': 'cors', + 'Accept-Encoding': 'gzip, deflate', + 'Cache-Control': 'max-age=0', 'User-Agent': getUserAgent(), }; if (init?.headers) {