diff --git a/src/core/cdn-types.ts b/src/core/cdn-types.ts index 66b7d7ba0..a490ed9f8 100644 --- a/src/core/cdn-types.ts +++ b/src/core/cdn-types.ts @@ -7,5 +7,5 @@ const defaultOwner = 'the1812' /** 根据分支名和仓库 owner 检索 CDN 链接 */ export const cdnRoots: Record string> = { jsDelivr: (branch, owner) => `https://cdn.jsdelivr.net/gh/${owner || defaultOwner}/Bilibili-Evolved@${branch}/`, - GitHub: (branch, owner) => `https://github.com/${owner || defaultOwner}/Bilibili-Evolved/raw/${branch}/`, + GitHub: (branch, owner) => `https://raw.githubusercontent.com/${owner || defaultOwner}/Bilibili-Evolved/${branch}/`, }