https://musing-lichterman-a19b25.netlify.app/
Hello Everyone.
I just created a page using gridsome. i am having problem with vue-carousel on netlify. After deploy on vue-carousel is not working. but its working fine on local dev.
Here is my code.
<ClientOnly>
<carousel :perPage="3">
<slide>
</slide>
</carousel>
</ClientOnly>
export default {
name: 'Index',
components: {
Carousel: () =>
import ('vue-carousel/src/index')
.then(m => m.Carousel)
.catch(),
Slide: () =>
import ('vue-carousel/src/index')
.then(m => m.Slide)
.catch()
},
}
perry
November 12, 2020, 6:01pm
2
can you describe a bit more how its not working? I am not sure what i am looking for when i look at that page!
Sometimes these things can be caused by case issues:
Last Reviewed By Netlify Support Staff: December 2022
Are you struggling to understand why your project runs locally but errors out with missing files or logs that point toward issues with case when you try and build on Netlify? You are not alone. Often, case (as in: UPPERCASE or lowercase letters in filenames or paths) can cause problems. Here is a guide to understanding how case sensitivity issues present themselves, why they arise, and how you can fix them!
1. Errors you might see
Case sens…
Hello perry,
Thanks for you kind response. Actually it was my mistake everything was fine but unforunately i linked wrong branch of github.
Thanks
1 Like