Window is not defined in Next.js React app Window is not defined in Next.js React app reactjs reactjs

Window is not defined in Next.js React app


Another solution is by using process.browser to just execute your command during rendering on the client side only.

if (process.browser) {  // Client-side-only code}