
.Posts.
Building the Launcher One

- one thing
- another
and that was it
cat somefile.dat > /dev/null
export async function generateStaticParams() {
const posts = await getPostsMeta();
if (!posts) return []
return posts.map((post) => ({
slug: post.slug,
}));
}