'Scrolling works when hotreloading but not in build using Vuetify?

When developing my website, I've been running it on localhost, where scrolling works fine, but after building the site it isn't scrollable at all. I'm using a list of v-cards to show a number of printers.

<v-row>
      <v-col
        cols="12"
        sm="6"
        md="4"
        lg="3"
        xl="2"
        v-for="(print, index) in filterdPrinters"
        :key="index"
        >
        <printer :data="print" />
      </v-col>
 </v-row>

filterdPrinters is a list of printers from our database, and <printer> is a component that displays the information contained in the object "print". I'm using Vuetify version 2.5.0 and Vue version 2.6.12.



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source