this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Apply `pnpm format`

+1 -1
+1 -1
src/pages/blog/index.astro
··· 10 10 import { blog } from "@/config"; 11 11 12 12 const posts = await getCollection("blog").then((x) => 13 - x.sort((a, b) => b.data.date.getTime() - a.data.date.getTime()) 13 + x.sort((a, b) => b.data.date.getTime() - a.data.date.getTime()), 14 14 ); 15 15 --- 16 16