We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e797658 commit bd0a7f4Copy full SHA for bd0a7f4
packages/gatsby/cache-dir/ensure-page-component-in-bundle.js
@@ -14,13 +14,13 @@ const ensureComponentInBundle = chunkName =>
14
// Tell the server the user wants to visit this page
15
// to trigger it compiling the page component's code.
16
//
17
- // Try for 10 seconds and then error.
+ // Try for 30 seconds and then error.
18
let checkCount = 0
19
const checkForBundle = () => {
20
checkCount += 1
21
- if (checkCount > 99) {
+ if (checkCount > 299) {
22
reject(
23
- `Loading the page component ${chunkName} timed out after 5 seconds`
+ `Loading the page component ${chunkName} timed out after 30 seconds`
24
)
25
}
26
// Check if the bundle is included and return.
0 commit comments