Skip to content
Advertisement

Server Error ReferenceError: window is not defined in Next.js

I’m trying to integrate CleverTap into my Next.js app. Followed the documentation Web SDK Quick Start Guide but facing issue:

Server Error ReferenceError: window is not defined in Next.js

Please have a look


_app.tsx

JavaScript

cleverTapHelper.ts

JavaScript

cleverTap.d.ts

JavaScript

Window object should not be undefined but getting undefined! What’s going on?

Advertisement

Answer

This is because NextJS is trying to execute that function on the server because it uses SSR, and window is a browser object. Since the window object is available only in the browser (client-side), the server is unable to identify the window object, hence getting undefined. In order to fix this, you should make sure that any functions/components that contain client-side related code be executed only on the browser or client-side. One way is using hooks such as useEffect that run only after the component is mounted. Another way is to use lazy loading which pretty much does the same thing.

  1. Using useEffect hook. In your _app.tsx component, add a new useEffect hook and move the initialization code into the newly created useEffect function.
JavaScript
  1. Using lazy loading. (Dynamic import) Instead of directly importing the function, import it dynamically and set server-side rendering to false:
JavaScript
Advertisement