I have Image Manager's directories configured as so:
<ImageManager ViewPaths="~/images/shared" UploadPaths="~/images/shared" DeletePaths="~/images/shared" />
So when I insert an image I would expect it to be referenced as href="/images/shared/foo.jpg"
But instead, the image manager appends some of the preceding folder structure before /images - this is a problem for me because my test and production environments use different folder structures, but I want to be able to port my db (with links) to production when the site is ready.
How do I get ImageManager to create genuinely relative paths?