[Vuejs]-Images not loading after Firebase hosting deployed

2👍

Your URLs are looking for a subfolder named /dist/, but the public folder is indeed dist, so you just need to take that out of the image tags.

For example, replace https://tasker-2d87e.firebaseapp.com/dist/tasker_logo.png with https://tasker-2d87e.firebaseapp.com/tasker_logo.png and you’ll see the image you’re looking for.

👤Kato

1👍

I found that the filenames served on Firebase are case sensitive. I had image.jpg in my code, but the file name was actually image.JPG and when I corrected that, everything appeared as expected.

Leave a comment