fix: jsr API for cloudflare worker env

Without this header will get html format instead of json in cf worker
This commit is contained in:
Huakun Shen 2025-03-23 10:26:18 -04:00
parent 310969e597
commit 11226ee2ef
No known key found for this signature in database

View File

@ -119,7 +119,11 @@ export function getJsrPackageSrcFile(
file: string
): Promise<string | undefined> {
const url = `https://jsr.io/@${scope}/${name}/${version}/${file}`
return fetch(url).then((res) => res.text())
return fetch(url, {
headers: {
Accept: "application/json"
}
}).then((res) => res.text())
}
/**