Next Build Error - Error occurred prerendering page / TypeError: Cannot read properties of null (reading 'useMemo')

2.5k Views Asked by At

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

2

There are 2 best solutions below

3
On

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:

  1. Change <Japan/> : null to <Japan/>. if you wanna dynamically display Component try useState Hooks instead

if that doesn't work

  1. Search every function using useMemo() Hooks
  2. Check is any of those function returns null

Hope that works

0
On

I was facing a similar issue. using yarn build instead of next build seems to fix it for now. checkout this issue