-1

I created a small app out of Angular-fullstack which works locally and shows all the images. When app is uploaded to Heroku, png images are not rendered and I can see that all images are exists on the server but somehow images got damage

Link to the app: http://afternoon-shelf-4757.herokuapp.com/

devrecur
  • 24
  • 3

1 Answers1

0

You could tell git that your png files are binary and should not be modified.

Add this line to your .gitattributes file:

*.png binary

For more info see Git-Attributes Binary Files

G1eb
  • 11
  • 1