iyonaga
Results
1
comments of
iyonaga
In my Next app, I used dynamic import to get around this issue. ```js import dynamic from 'next/dynamic'; const ModalVideo = dynamic(() => import('react-modal-video'), { ssr: false }); ```