Skip to content

Commit

Permalink
fix: pageSize change
Browse files Browse the repository at this point in the history
  • Loading branch information
EveSunMaple committed Dec 22, 2024
1 parent 72c1a64 commit 068a9c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/blog/[...page].astro
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export async function getStaticPaths({ paginate }: { paginate: any }) {
}),
);
return paginate(postsWithStats, { pageSize: 5 });
return paginate(postsWithStats, { pageSize: 8 });
}
const { page }: { page: Page } = Astro.props;
Expand Down

0 comments on commit 068a9c3

Please sign in to comment.