I'm trying to dynamically fetch assets but there seems to be an issue with Vite.
I've tried a lot of different variations, but none seem to work. Is there any Vite config I have to do?
Some of the variations I've tried:
<img :src="`~/assets/${step.img}`" />
<img :src="`~assets/${step.img}`" />
<img :src="`@/assets/${step.img}`" />
<img :src="`assets/${step.img}`" />
<img :src="`/assets/${step.img}`" />