Skip to content

Commit f0689ff

Browse files
authored
fix(gatsby-plugin-sitemap): fixed missing sitemapSize config entry (#27866)
1 parent f4d09bc commit f0689ff

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

packages/gatsby-plugin-sitemap/src/gatsby-node.js

+3
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,9 @@ exports.pluginOptionsSchema = ({ Joi }) =>
109109
Due to how this plugin was built it is currently expected/required to fetch the page paths from allSitePage,
110110
but you may use the allSitePage.edges.node or allSitePage.nodes query structure.`
111111
),
112+
sitemapSize: Joi.number().description(
113+
`The number of entries per sitemap file.`
114+
),
112115
})
113116
.external(({ query }) => {
114117
if (query) {

0 commit comments

Comments
 (0)