Closed seyyed-sina closed 3 years ago
how can we use external packages like fade and asNavFor?! I have to slider and want to make asNavFor one for another. how can I achieve this? I have installed these packages and using nextjs but it gives 'window is not defined'
@spostad7 you can try something like this:
const fade = typeof window !== 'undefined' ? require('flickity-fade') : () => null; ... {fade && <Flickity />}
how can we use external packages like fade and asNavFor?! I have to slider and want to make asNavFor one for another. how can I achieve this? I have installed these packages and using nextjs but it gives 'window is not defined'