Livereload and Image Caching

Hello, I’m using a plugin called ionic-cache-src. Cached images won’t load from filesystem when I run my app with --livereload. Is there a workaround for this? Having to change up the view code each time I want to enable or disable livereload is a real pain. Thanks.

<ion-view view-title="{{profile.username}}">
   <ion-content>
      <div ng-repeat="image in profile.images track by $index>
         <img width="300" height="300" alt="" cache-src="http://192.168.1.134:8000/uploads/{{image.image}}">
      </div>
   </ion-content>
</ion-view>

Were you ever able to get ionic-cache-src working? I’m trying to cache images retrieved from firebase storage.

initially, If I had two images in a view the one loading first nearest the top of the page would not get cached or loaded but the one below it would.

Later I tried switching the order and adding a third image to the view. But then it was the same two images that would load. The new images did not load even if they were at the top of the view.