I'm creating an app with AngularJS and Symfony with Twig. When I use ng-repeat like that:
<div ng-repeat="person in people">
<img src="{{ '{{ person.photo }}' }}"/>
</div>
in the browsers console I always get error that resource {{ person.photo }}
not found. I believe it makes the page loading time longer and also it doesn't look good when console is full of errors. How do I solve this?