react-carousel-3d
react-carousel-3d copied to clipboard
Not working in next js
When I use 3d-react-carousal in typescript + next js project, I faced this issue. In the normal react project, this is working well.
ReferenceError: self is not defined
What is the solution? Thank you
Were you able to fix this error?
When I use 3d-react-carousal in typescript + next js project, I faced this issue. In the normal react project, this is working well.
ReferenceError: self is not defined
What is the solution? Thank you
3d-react-carousal doesnot support ssr.
please use like ths .
const YourComponent= dynamic(
() => import("../componments/Carousel"),
{
ssr: false,
}
);
Thank you, I will try, @xiaomingyu-git
have you able to fix this issue @vecnazmaga
have you able to fix this issue @vecnazmaga I tried and it works.,