Carousel not loading on Netlify
rizahassan opened this issue · 1 comments
rizahassan commented
I installed the carousel globally on NuxtJS. To install globally, I added a file called carousel.js in /plugins and it contains
import Vue from 'vue';
import Carousel3d from 'vue-carousel-3d;
Vue.use(Carousel3d);`
Then, I added the src file on the plugins array in nuxt.config.js as the code below: plugins:[{src:'~/plugins/carousel
It works on my local but not after deploying it on Netlify.
edmi1994 commented