Any reason to why i am getting this ????
PS. I want carousel to be SSR
Which version of Nuxt are you using?
@ElijahKotyluk NUXT 2.6.1
This is a common issue with Nuxt SSR and using third party components, you may need to wrap the component in a no-ssr tag for it to work within Nuxt, as some components are not compatible. So this is a common work around:
<template>
<no-ssr>
<component />
</no-ssr>
</template>
Or you can try moving all DOM manipulations to the mounted lifecycle hook. Aside from that, I couldn't say without seeing your code.
@ElijahKotyluk i am aware of <no-ssr> thing but then the content will not be available for SEO
Most helpful comment
@ElijahKotyluk i am aware of
<no-ssr>thing but then the content will not be available for SEO