On a page, I have links to multiple assets via CDN and also am using Cloudinary to manipulate my image files. So in other words, the code looks like this:
<%= cl_image_tag "Logo white.png" %>
<%= stylesheet_link_tag 'https://something.css' %>
Recently, I noticed that the css
link was broken, but the fact that it was broken interfered with Cloudinary so that the image could not be loaded. Is there a way to prevent this kind of behavior? Something that ensures that even if some assets don't load, other things run?