In case you want to order the tags by number of posts, inside the CategoryCloud.astro file, when calling
Instead of using:
Object.entries(processedCats).map(([key, val]) => (
Change it for:
Object.entries(processedCats).sort((a,b)=> b[1]-a[1]).map(([key, val]) => (
In case you want to order the tags by number of posts, inside the CategoryCloud.astro file, when calling
Instead of using:
Change it for: