I use AngularJS in my website and some images are loaded like this:
<img ng-cloak src="{{ person.username }}"/>
the problem is that I get 404 errors in console that the image is not found because before angular is laoded it tries to load image named {{ person.username }}
How do I solve this?