Just like many others, I am struggling to find the correct path...
referencing @/assets/drive.jpg
I have attempted: ~@/assets/drive.jpg, ~/assets/drive.jpg, @/assets/drive.jpg
When I directly input it into my CSS, it works fine. However, when I try to use it inline (for dynamic purposes), it does not allow me.
<div>
class="hero-image"
:style="{
backgroundImage: `url('${imageUrl}')`,
backgroundPosition: `${imagePosition}`
}"
</div>