-
Notifications
You must be signed in to change notification settings - Fork 27k
New issue
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
Invariant: attempted to hard navigate to the same URL (Rewrites inside next.config.mjs) #39638
Comments
Hi, it looks like the above reproduction is 404ing, please update it so we can take a look! |
Should be fixed now, was set to private |
I've been seeing the same issue. I tracked it down to this change made in 12.2.1. Adding
Reverting the change would fix it for us but we would reintroduce the issue for people who don't have trailing slashes on the end of their rewrite sources and have I'll have to look into it more but there may be some issue with using One possible solution that I think covers all use cases and avoids adding extra pattern matching. Although I'm not sure it is safe to make assumptions about what a rewrite source will end with so more testing is needed.
If no one gets to it before me I can investigate further and work on a PR next week. |
I think your onto something as I've also just looked into it using what you've found but I have yet to determine if (/)? is what is actually causing the problem.
I believe this is the correct change. I've tried this change in all my repositories and they have functioned as they were suppose to. I will run a few more tests but I believe this is equivalent to the solution that you have. |
I originally tried the same solution of |
I looked into path-to-regex that |
I actually just tried it without the
|
Thanks for pointing out that you moved the |
@grayaustinc I just pushed a unit test to my PR that can be used to test that these changes cover all cases. You can use that test to verify potential fixes. You may have to set |
@grayaustinc after some more testing I got your solution to work with one small change.
Since |
@msampsontruecar That's surprising to me that the env variable would work like that as even in the current canary the env variable is used as a boolean. All of my cases work with the changes you made above with |
Updated the reproduction to use Next 13 and continue to have same issues. |
I am facing the same issue with Next.js 13 latest when redirect to another page not found in 404 route. This error still exists till now with no solution :( |
I found a workaround that worked for my specific use case, but it's shocking that this issue persists in version 14.1.0. Kludge: #40549 (comment) |
Verify canary release
Provide environment information
Deployed to Vercel
What browser are you using? (if relevant)
Not relevant
How are you deploying your application? (if relevant)
Vercel
Describe the Bug
When creating rewrites from next.config.mjs, that include a trailing slash in the source, and/or rewriting from a source to a destination with a slug
{ source: "/test/", destination: "/test/1/" }
will cause errors in production that will cause the page to reload and throws an error.Errors:
Failed to lookup route: /
The provided 'as' value (/test/) is incompatible with the 'href' value (/test/[slug])
Invariant: attempted to hard navigate to the same URL /
On the minimal reproduction, errors can be seen when clicking on the home button twice. For the first group of links 1,3,4 (links 2, 2.5 apparently work because /test.js file actually exists) It appears as though a root index file is needed in a folder that has a dynamic route in order to prevent the errors from occurring even though the path should be getting rewritten to the dynamic destination.
The second "fix" is from removing the trailing slash from the source. I have no idea why removing the trailing slash from the rewrite source prevents the errors above from happening but I wouldn't really call that a solution to the problem as you can't really remove the trailing slash from the home page '/'. You can see that removing the trailing slash does not throw errors in the reproduction with the second group of links.
In development, the network tab shows that the router is requesting the wrong JavaScript file for the page and seems to be ignoring the rewrite from the manifest (Cannot be seen in Vercel reproduction).
I believe whatever is causing this bug is the same bug for #38171 as it follows a similar premise using rewrites and in development, an extra page.js fetch can be seen before the page reload with a
Failed to load script: /_next/static/chunks/pages/test.js
error.Expected Behavior
Should work the same way as 12.1.4 where rewrites do not throw errors on page load.
Link to reproduction
https://next-12-2-4-rewrite-bug.vercel.app
To Reproduce
Minimal reproduction repo: https://github.com/grayaustinc/next-12.2.4-rewrite-bug (is now on version: next@canary)
Create rewrites in next.config.mjs where the source does not contain the slug (with a trailing slash) and the destination with the slug included.
{ source: "/test/", destination: "/test/1/" }
More simply, a source/destination for the home page
{ source: "/", destination: "/home/" }
The text was updated successfully, but these errors were encountered: