mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-03 22:26:43 +00:00
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:
parent
310969e597
commit
11226ee2ef
@ -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())
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user