David Camilo Sánchez Mora
Results
1
comments of
David Camilo Sánchez Mora
I don't know if is the best approach but I solved this problem by using dynamic import ``` import dynamic from 'next/dynamic' const SliderComponentWithNoSSR = dynamic(import('../components/SliderComponent'), { ssr: false })...