I have a strange problem where I can see an image if I hard code it but if I try and use the aurelia binding functions it will not work.
html template
<template>
...
<img src="${imageURL}" />
<img src="../images/image1.jpg" />
...
</template>
This renders as
<html>
...
<img class="au-target" au-target-id="7" src="../images/image1.jpg"> (not working)
<img src="/a6c7e3f2e070b21f54eeb86ac5b0eb08.jpg"> (working)
...
</hmtl>
The Hardcoded img works but has been magically changed to a random filename, but my Dynamic bound img does not work because it has not been changed like the static one has. What do I need to do to get the dynamic bound image to use the correct modified source?