BUG: vuetify v-hover

I’m using vue 2 and vuetify 2 but I have a little problem using a v-hover component from vuetify, everything is working great except that v-hover only works local and when I try it in production doesnt work

<v-hover
          v-slot="{ hover }"
          v-for="card in cards"
          :key="card.id"
          class="work-cards"
          :style="$vuetify.breakpoint.xs ? 'place-items: center;' : ''"
        >
          <v-card
            data-aos="fade-up"
            class="d-flex content-card elevation-0 mb-2"
            @click="openWork(card)"
          >
            <div
              :class="['img-container rounded-lg', { 'zoom-img': hover }]"
              :style="{
                backgroundImage: `url(${card.img})`,
              }"
            >
              <div
                :class="['container-info', { 'opacity-info': !hover }]"
                style="min-height: 250px"
              >
                <div class="d-flex mb-1">
                  <p
                    class="card-year font-weight-black grey--text text--lighten-3 mb-0 mx-2"
                  >
                    {{ card.year }}
                  </p>
                  <p class="card-title font-weight-black white--text mb-0">
                    {{ card.shortTitle }}
                  </p>
                </div>

                <div class="d-flex">
                  <v-chip
                    small
                    v-for="chip in card.tech"
                    :key="chip.id"
                    :text-color="chip.color"
                    class="ml-2"
                    :color="chip.background"
                    >{{ chip.name }}</v-chip
                  >
                </div>
              </div>
            </div>
          </v-card>
        </v-hover>

https://www.melvinduranvega.com/ (Is in the section “work”)

Hey, @melvindv! Welcome to the Vercel Community :wave:

Could you expand on what you mean? I wasn’t sure what the expected behaviour is.

Of course! My problem is that I’m working in a project using vuetify and when I used v-hover component an upload it to vercel it doesnt works, only works locally. Idk if exist a problem with minified v-hover component

Here is how it should look like: