Why is Bootstrap trying to load LESS files in Edge?

The good news is this won't be affecting regular users of the site. The bad news is this is also happening in Chrome to some extent, it's just that the network tab in Chrome isn't reporting the 403 errors.

In the CSS file that you link to there is a line at the bottom of the file:

/*# sourceMappingURL=bootstrap.min.css.map */

This is the source maps and gives links to all the source files used to generate the minified CSS that is in your browser.

In the bootstrap instance the CDN is pointing to files that do not exist such as http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/less/scaffolding.less

The source map file will only be downloaded if you have source maps enabled and your dev tools open. Edge defaults source maps on and as far as I can tell there is no way to switch them off (but remember this will only happen when the dev tools are open, I have confirmed this behaviour using Fiddler), so when you press f12 then it's going to try and fetch the source mapped files. Chrome works slightly differently, it will download the source map but then will not attempt to download the .less file until you navigate to the source file.

If one of the .less files is returning a 403 Forbidden response Edge reports this in the network tab. Chrome dosen't.

If you use http debugger such as Fiddler you will see that Chrome does indeed request the files and also gets a 403 response, however, it doesn't report it on the network tab. When using Fiddler to get past the https issue I changed the CSS file to point to the non https URL. e.g: http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css

The fix for this issue is to fix the files that are 403'ing in the source map. I have raised an issue on the bootstrap maxcdn GitHub repro: https://github.com/MaxCDN/bootstrap-cdn/issues/629


There is a known issue with MaxCDN itself. (and CDNjs as well)

Logged issues for reference:

  • https://github.com/MaxCDN/bootstrap-cdn/issues/671 - This issue is closed as duplicate

  • https://github.com/MaxCDN/bootstrap-cdn/issues/629 - known bug

  • https://github.com/twbs/bootstrap/issues/19063 - open issue with Twitter bootstrap

CDN analysis:

For sourceMappingURL which is bootstrap.min.css.map for bootstrap file, any of the .less extension files (e.g. this file) are failing to load with HTTP status 403 (forbidden).

Chrome is supressing this issue in the developer console, however Edge is not. The issue when accessing the .less files is reproduceable by accessing this link.

This issue is not only with MaxCDN, but also with CDNjs. The links for CDNjs are this,this & this