gatsby-plugin-feed的内部结构似乎表明我们可以对显示在提要中的帖子数量设置限制:
{
// Create a default RSS feed. Others may be added by using the format below.
feeds: [
{
query: `
{
allMarkdownRemark(
limit: 1000,
sort: {
order: DESC,
fields: [frontmatter___date]
}
) {
edges {
node {
frontmatter {
title
date
}
fields {
slug
}
excerpt
html
}
}
}
}
`,
...
]
}
当我尝试在我自己的定义中更改limit
为时,它似乎没有任何效果。有没有一种标准方法来限制 RSS 提要中的项目数量,这样我就没有 250 多个帖子?10
gatsby-config.js