-1

I had done what has been told in the user guide of owl-carousel but I am getting this Server Error ReferenceError: window is not defined. I think there is a problem with the plugin or in config.next

please help me what should I do

  • The library you are using is probably not compatible with SSR. To use browser-only libraries do dynamic imports. Refer: https://nextjs.org/docs/advanced-features/dynamic-import#with-no-ssr Also refer: https://stackoverflow.com/q/55151041/11613622 – brc-dd Aug 25 '21 at 15:33
  • Can you provide a code example of your component? – Fiodorov Andrei Aug 25 '21 at 15:57

1 Answers1

1

Move the slider initialization code to componentDidMount() or useEffect if you are using hooks.

Mostafa Nawara
  • 782
  • 9
  • 21