-
Notifications
You must be signed in to change notification settings - Fork 27.5k
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
Could not find the module in the React Client Manifest. This is probably a bug in the React Server Components bundler. #52862
Comments
@timneutkens @khuezy Opened new issue as earlier one was locked #50243 |
I'm amazed by how my comments and the issue template are ignored multiple times 😢 This issue does not have a reproduction, only a link to a directory tree screenshot. |
We cannot recreate the issue with the provided information. Please add a reproduction in order for us to be able to investigate. Why was this issue marked with the
|
I must have missed it. Its not mine but having the exact same issue. |
@timneutkens please forgive our incompetence ;) |
Here is a simple way to reproduce this issue:
Anytime you click a photo the error will popup.
|
I believe #52664 is causing the issue. The issue appears to be due to the naming convention of intercepting routes. Line 352 in
If we do a normal group,
However if we do an intercepting route,
I'm not sure if it handles intercepting routes above or elsewhere, but this just caught my eye at first glance. It would make sense why intercepting routes don't work. |
So did the PR above forget to account for the |
I am facing the same problem I made a modal using parallel routing and intercepting route it works fine but when I added a back button using useRouter from "next/navigation" it is giving me error: Unhandled Runtime Error Please help me I need to add this back function 🥹 Edited: |
We have the logic to group the client compiler's entry names to make sure we generate one single manifest file for the page. This is complicated and requires a special step to "group" the entry names because a page can depend on a bunch of files from everywhere. And currently, the normalization of "entryName → groupName" doesn't cover interception routes' conventions (`(.)`, `(..)` and `(...)`). This PR fixes that. Closes #52862, closes #52681, closes #52958.
Hi all, this issue should be fixed in |
Thanks @shuding, it's fixed! |
uh oh, .13 broke this again, cc @shuding |
Broken for me too ! :/ |
Please open a new issue with a reproduction so that we can have a look. |
I get this error when nested components both have |
Verify canary release
Provide environment information
Operating System: Platform: darwin Arch: arm64 Version: Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:19 PDT 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T8103 Binaries: Node: 16.20.0 npm: 8.19.4 Yarn: 1.22.19 pnpm: 8.6.0 Relevant Packages: next: 13.4.11-canary.0 eslint-config-next: 13.4.8 react: 18.2.0 react-dom: 18.2.0 typescript: 5.1.6 Next.js Config: output: N/A
Which area(s) of Next.js are affected? (leave empty if unsure)
No response
Link to the code that reproduces this issue or a replay of the bug
https://github.com/vercel/next.js/assets/16620277/58d05257-6176-47bb-bca5-b84afb6c5843
To Reproduce
https://stackblitz.com/github/easydevgit/next-13-course/tree/master/advanced-routing-intercepting-routes?file=app/layout.tsx
Describe the Bug
I am getting this error after updating to 13.4.10 and also on latest canary. It is working fine on 13.4.9.
I am using parallel and intercepting routes.
Expected Behavior
Normal parallel and intercepting route behaviour.
Which browser are you using? (if relevant)
No response
How are you deploying your application? (if relevant)
Vercel
The text was updated successfully, but these errors were encountered: