Reputation: 492
In my Vue js app, image is loading on my localhost environment form "src/assets" folder but when i deploy it on firebase images are not showing .404 is showing . what the problem here?
i am using:
<img src="../assets/logo.png" style="width:100%" alt="Avatar">:
i also tried:
"<img :src="../assets/logo.png" style="width:100%" alt="Avatar">"
Upvotes: 0
Views: 3577
Reputation: 7175
Try to give the full path instead of ../assets/logo.png
try src/assets/logo.png
or what ever It should be complete full path.
Upvotes: 2