typescript
export async function getStaticPaths() {
const posts = await getCollection('blog');
return posts.map((post) => ({ params: { slug: post.slug } }));
}处理内容集合的时候发现astro的getCollection真的香,比手动遍历文件夹快太多了,早知道早点用上...
登录/注册