React app working but after refreshing the page, the images became not visible...
Demo: https://demo-old.herokuapp.com
The issue is discussed(see link below): React won't load local images and that was recommended to use:
<img src={require('./funnyanimal.gif')} />
Instead of:
<img src={"./funnyanimal.gif"} />
But it was not compiling and producing the error as below:
Error:
./src/App.js
Module not found: Can't resolve './funnyanimal.gif' in '/app/src'