We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Filing this issue as #87 doesn't seem to have a resolution.
On our site, we use react-snapshot to save snapshots of 524 routes and generate a sitemap. In the react-snapshot output, we see the following:
react-snapshot
This error occurs after the entire site tree is crawled (all routes of our site are logged to the console with “Saving”).
Last month we encountered this same issue, and found that the solution was to make the following change to our nesting pattern:
/a1/b1
/a1/b2
/a1/b3
/a2/b1
/a2/b2
/a2/b3
/a50/b1
/a50/b2
/a50/b3
/b1/a1
/b1/a2
/b1/a50
/b2/a1
/b2/a2
/b2/a50
/b3/a1
/b3/a2
/b3/a50
Although that approach worked before, now that we have more routes in our app, we can no longer avoid the error this way.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Filing this issue as #87 doesn't seem to have a resolution.
On our site, we use
react-snapshot
to save snapshots of 524 routes and generate a sitemap. In the react-snapshot output, we see the following:This error occurs after the entire site tree is crawled (all routes of our site are logged to the console with “Saving”).
Last month we encountered this same issue, and found that the solution was to make the following change to our nesting pattern:
Before
/a1/b1
,/a1/b2
,/a1/b3
/a2/b1
,/a2/b2
,/a2/b3
...
/a50/b1
,/a50/b2
,/a50/b3
After
/b1/a1
,/b1/a2
, .../b1/a50
/b2/a1
,/b2/a2
, .../b2/a50
/b3/a1
,/b3/a2
, .../b3/a50
Although that approach worked before, now that we have more routes in our app, we can no longer avoid the error this way.
The text was updated successfully, but these errors were encountered: