I am using Meteor 0.5.2 and getting following warning in Chrome for each of images which have their src generated by a template helper:
Resource interpreted
I was having a similar problem using the iron router package, although the images were not displaying at all. My images are in the public/ directory. They would display properly if I was using the url http://localhost:3000/tracker
, but my page on path http://localhost:3000/tracker/item
would not load images properly and gave me the aforementioned error.
I was using the following html:
When I added '/' before {{this.itemImage}}
like this:
The image would load properly, and there would be no error.