diff options
Diffstat (limited to 'src/pages')
-rw-r--r-- | src/pages/[...page].astro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pages/[...page].astro b/src/pages/[...page].astro index 2a6f5cc..42f84b3 100644 --- a/src/pages/[...page].astro +++ b/src/pages/[...page].astro @@ -12,7 +12,7 @@ export const getStaticPaths = (async ({ paginate }) => { posts.sort((a, b) => b.data.pubDate.getTime() - a.data.pubDate.getTime()); return paginate(posts, { - pageSize: 5, + pageSize: 10, }); }) satisfies GetStaticPaths; |