Help with dynamic image in Nuxt!

does anyone know to import dynamic assets because
<img
:src="`/_nuxt/assets/images/${item.image}`"
:alt="`card_${index + 1}`"
class="w-100 card_height"
/>
<img
:src="`/_nuxt/assets/images/${item.image}`"
:alt="`card_${index + 1}`"
class="w-100 card_height"
/>
the above code works but in production build it is not loading images but showing in dev environment but why does the below code doesn't work
<img
:src="`@/assets/images/${item.image}`"
:alt="`card_${index + 1}`"
class="w-100 card_height"
/>
<img
:src="`@/assets/images/${item.image}`"
:alt="`card_${index + 1}`"
class="w-100 card_height"
/>
0 Replies
No replies yetBe the first to reply to this messageJoin