Rens

Results 2 comments of Rens

I had the same issues because I forgot to add the `carouselController` to the `CarouselSlider`: ` CarouselSlider.builder( carouselController: carouselController, ... `

This fixed the issue for me: ``` // nuxt.config.ts export default { // ...other Nuxt configurations vite: { ssr: { noExternal: ['@googlemaps/js-api-loader'], } } } ```