We are loading bootstrap from CDN and recently, bootstrap stopped working for one of our client. It does not happen for other clients. We look at the console and network tab.
In console tab, there is a warning saying "Cross origin read block (CORB) blocked the cross origin resources "https:bpb.opendns.com/b/https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.2/css/bootstrap.min.css" with mime type text/html"
In network tab, we are getting 302 status for bootstrap files and then 200 statuses with 0 byte file size. Refer the attachment to see errors.
We are using below tag to load bootstrap
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.2/css/bootstrap.min.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
Our website use HTML 5. We did not specify type and cross origin attribute for those CSS and script(type is optional for html5). Could this be the reason for this issue?