Skip to content

Commit 9d883c6

Browse files
authored
fix(gatsby-source-contentful): Contentful page limit backoff (#30549)
1 parent 2cc90df commit 9d883c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/gatsby-source-contentful/src/gatsby-node.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ List of locales and their codes can be found in Contentful app -> Settings -> Lo
105105
.description(
106106
`Number of entries to retrieve from Contentful at a time. Due to some technical limitations, the response payload should not be greater than 7MB when pulling content from Contentful. If you encounter this issue you can set this param to a lower number than 100, e.g 50.`
107107
)
108-
.default(100),
108+
.default(1000),
109109
assetDownloadWorkers: Joi.number()
110110
.integer()
111111
.description(

0 commit comments

Comments
 (0)