diff --git a/src/utils/http.ts b/src/utils/http.ts index 461bf3f..47e8522 100644 --- a/src/utils/http.ts +++ b/src/utils/http.ts @@ -22,13 +22,6 @@ export const http = { }); }, get(url: string) { - return fetch(new URL(url), { - method: "GET", - mode: "no-cors", - referrerPolicy: "no-referrer", - headers: { - 'Content-Type': 'text/plain' - }, - }); + return fetch(new URL(url)); } }; \ No newline at end of file