The problem is simple: I would like to display an image from an absolute path in vuetify with the v-img tag but it is not showing.
I have already tried doing it with :src="require('path/to/img')"
but then an error comes saying "This dependency was not found"
<v-img src="src/assets/project_atv_logo.jpg"
class="mb-4"
contain
height="128"
></v-img>
The file is stored under src/assets folder. I am using a mac pc if it matters.