I'm trying to update a 2 year old project, and I've been having so much trouble after updating the dependencies
Right now after running 'next build', I keeps seeing:
Error occurred prerendering page "/japan-vlogs". Read more: https://nextjs.org/docs/messages/prerender-error
TypeError: Cannot read properties of null (reading 'useMemo')
for every page in my project
How do I even begin to debug this? The docs site has 5 different options and none of which say anything about the react dom server browser or use memo
screenshots hosted here: https://github.com/vercel/next.js/discussions/44171#discussion-4678699
The error message
"TypeError: Cannot read properties of null (reading 'useMemo')"
indicates that you are trying to access a property of an object that is null or undefined. This can occur if you are trying to access a property of an object that has not been initialized, or if you are trying to access a property of an object that has been set to null.From the Screenshot you provided it indicates that in "JapanVlog" you are trying to use ternary operator or short circuit,
Try this:
<Japan/> : null
to<Japan/>
. if you wanna dynamically display Component try useState Hooks insteadif that doesn't work
null
Hope that works