.Posts.
The Rover Returns
I Learned so much buildiung the first one
And a bit of text for context
smaller heading
- one thing
- another
export async function generateStaticParams() {
const posts = await getPostsMeta();
if (!posts) return []
return posts.map((post) => ({
slug: post.slug,
}));
}