@majordigital/create-acorn 1.6.7 → 1.6.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -57,6 +57,13 @@ const result = await checker.check({
|
|
|
57
57
|
concurrency,
|
|
58
58
|
timeout: 30000,
|
|
59
59
|
headers,
|
|
60
|
+
// Retry on 5xx / connection errors. The Next.js dev server compiles routes
|
|
61
|
+
// on-demand, so the first hit to a page can be slow or transiently 500 —
|
|
62
|
+
// retrying absorbs those false positives. For reliable results, run against
|
|
63
|
+
// a production build (npm run build && npm run start) instead of next dev.
|
|
64
|
+
retry: true,
|
|
65
|
+
retryErrors: true,
|
|
66
|
+
retryErrorsCount: 3,
|
|
60
67
|
linksToSkip: [
|
|
61
68
|
// Skip external links to avoid false positives from rate limiting
|
|
62
69
|
`^(?!(${baseUrl.replace(/[.*+?^${}()|[\]\\]/g, "\\$&")}))`,
|