-
After upgrading to 0.44.4 for my codebase, there is an error like the below, It may come from next.js (e.g. vercel/next.js#31038), but not sure why it happens. Does anyone face the same problem and resolve it? By the way, I added
to |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 7 replies
-
The error suggests that some server code landed on the client (where there's no |
Beta Was this translation helpful? Give feedback.
-
I'm getting the same error. I feel the issue might be related to me using Next 13, App, Router |
Beta Was this translation helpful? Give feedback.
-
For me, i think you may have omitted the "use server" directive in one of your server code. probably an Action. This was what caused mine |
Beta Was this translation helpful? Give feedback.
The error suggests that some server code landed on the client (where there's no
child_process
). Do you have a repo with reproduction?