I'm using Nuxt 3
and this is directories structure
images are loaded like this
<img src="/images/index/pic-left.svg" />
I've also tried (start without /
)
<img src="images/index/pic-left.svg" />
and it didn't worked again
What's the problem ?
CodePudding user response:
In Nuxt3, the directory is now public
and not static
.
So it should be /images/index/pic-left.svg
.