Reputation: 49
I work on my project recently and it works fine in my localhost. But when I host it on github gh-pages, all pictures are not displaying. I know it is case-sensitive and have been checking the uppercase/lowercase and the relative path as well, but still the pictures are not showing.
Any solutions?
here are the image path:
<img class="thumnail" src=".././images/picture1.jpg">
<img class="thumnail" src=".././images/picture2.jpg"
folder structure is like this:
images
picture1.jpg
picture2.jpg
Dist
index.html
style.css
Upvotes: 0
Views: 205
Reputation: 49
solved it! I moved the images folder into dist folder and deploy it again and it works! and I changed the path to
<img class="thumnail" src="images/picture1.jpg">
Upvotes: 1