First, this is for Swift 3. I am creating a container app that simply serves a website.
The problem is that everything comes back fine and works, but the images are not showing. When debugging, it looks like the problem is that the webview isn't accepting images from an asp app site that uses a relative path to hit a .net api endpoint within the app. The image is served with the following tag:
<img src="api/Answers/Image/1006" class="panel-image" alt="">
All other functionality and data is coming back fine. The website works perfectly fine on all standard web browsers including safari. Any ideas on how to fix this.