Abu Sayed
Musician | Singer | Lyricist | Composer | Music Producer | Web | Game | XR & Blockchain Developer
Tag Archives: useClientSide
Prevent “window is not defined” Errors With a useClientSide() Custom Hook – React Dev Feed

Prevent “window is not defined” Errors With a useClientSide() Custom Hook TLDR: There is no window object on the server – trying to access the window object will thrown an error in server side rendered code, and in Node.js based development environments You can access window in a useEffect hook, as uesEffect only runs on…