Skip to content

Commit

Permalink
fix(gatsby-plugin-sitemap): fixed missing sitemapSize config entry (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
me4502 authored Nov 6, 2020
1 parent f4d09bc commit f0689ff
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/gatsby-plugin-sitemap/src/gatsby-node.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,9 @@ exports.pluginOptionsSchema = ({ Joi }) =>
Due to how this plugin was built it is currently expected/required to fetch the page paths from allSitePage,
but you may use the allSitePage.edges.node or allSitePage.nodes query structure.`
),
sitemapSize: Joi.number().description(
`The number of entries per sitemap file.`
),
})
.external(({ query }) => {
if (query) {
Expand Down

0 comments on commit f0689ff

Please sign in to comment.