NuxtN
Nuxt2y ago
_castro

NuxtImg not displaying image

Hello,

I'm trying to display my image via NuxtImg but it isn't able to locate the path to it. It's currently sitting at assets/logo.png, and when I try to remove the ~assets/ or ~ it still doesn't work.

In DevConsole, the error message I get is: GET http://localhost:3000/_ipx/_/assets/logo.png 404 (IPX_FILE_NOT_FOUND)

This is my NavBar.vue:
<template>
  <div class="max-w-section mx-auto pt-6 pb-6">
    <NuxtImg src="/assets/logo.png" />
    Hello
  </div>
</template>
Was this page helpful?