I have a frontend Azure WebApp (AngularJS + HTML) with images hosted on the same app and my goal is to reference all the image files on the Azure CDN instead.
At first I thought this article was the solution: https://azure.microsoft.com/en-us/documentation/articles/cdn-websites-with-cdn/
I tried replicating the entire app onto the CDN and this works, however it seems as though I need to tell search engines not to crawl the CDN content or I will get duplicate SEO issues. I can now navigate to the app on the CDN which is not quite what I want. I just wanted to use the CDN image locations in my JS or HTML code. I am not sure if I am now supposed to change the img src references to the CDN images in the js/html.
So it also seems as though for my requirements integrating the webapp with the CDN is overkill.
Hence my question is: Should I set up a Blob storage and put all my images on that and then intregrate that storage account with the CDN instead (https://azure.microsoft.com/en-us/documentation/articles/cdn-create-a-storage-account-with-cdn/) or have I missed something fundamental?
All the CDN/WebApp Azure articles talk about changing MVC code and bundling but my frontend is pure HTML/JS.
Any advice appreciated... thanks.