diff --git a/src/lib/github.ts b/src/lib/github.ts index c8d2d85c9..52eff3d6a 100644 --- a/src/lib/github.ts +++ b/src/lib/github.ts @@ -14,6 +14,10 @@ export async function countStars( export async function getFormattedStars( repo = 'kamranahmedse/developer-roadmap' ): Promise { + if (import.meta.env.DEV) { + return '223k'; + } + const stars = await countStars(repo); return formatter.format(stars);