Merge remote-tracking branch 'upstream/main'

This commit is contained in:
Hk-Gosuto
2023-09-18 19:07:58 +08:00
4 changed files with 4 additions and 4 deletions

View File

@@ -119,7 +119,7 @@ const loadAsyncGoogleFont = () => {
getClientConfig()?.buildMode === "export" ? remoteFontUrl : proxyFontUrl;
linkEl.rel = "stylesheet";
linkEl.href =
googleFontUrl + "/css2?family=Noto+Sans:wght@300;400;700;900&display=swap";
googleFontUrl + "/css2?family=" + encodeURIComponent("Noto Sans:wght@300;400;700;900") + "&display=swap";
document.head.appendChild(linkEl);
};