html - Pictures not showing up on Heroku?

后端 未结 9 1774
说谎
说谎 2021-01-15 09:09

I deployed my static HTML website to Heroku using this tutorial (http://www.lemiffe.com/how-to-deploy-a-static-page-to-heroku-the-easy-way/) and my pictures won\'t show up ?

9条回答
  •  灰色年华
    2021-01-15 09:22

    If the image has a large size it will not load on the Heroku on a free version.

    You can resize the image in an image editor (ie: paint) to reduce the size but it will also reduce quality.

    Then push by the following commands

    git add .
    git commit -m "resize"
    git push heroku master
    

    It should work

提交回复
热议问题