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">"
<img src="./assets/logo.png" style="width:100%" alt="Avatar">and that should work.