mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-04 14:46:42 +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
|
file: string
|
||||||
): Promise<string | undefined> {
|
): Promise<string | undefined> {
|
||||||
const url = `https://jsr.io/@${scope}/${name}/${version}/${file}`
|
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