website: use a pre-defined GitHub stargazers count outside of SSR

This commit is contained in:
Adorian Doran
2025-10-03 19:22:58 +03:00
parent 7657e17373
commit bab536751a
2 changed files with 5 additions and 3 deletions

View File

@@ -1,3 +1,5 @@
export const FALLBACK_STARGAZERS_COUNT = 31862; // The count as of 2025-10-03
const API_URL = "https://api.github.com/repos/TriliumNext/Trilium";
/** Returns the number of stargazers of the Trilium's GitHub repository. */
@@ -11,5 +13,5 @@ export async function getRepoStargazersCount() {
}
}
return 31862; // The count as of 2025-10-03
return FALLBACK_STARGAZERS_COUNT;
}