Configured in the project to load "fontawesome.min.css" from the local project folder instead of from CDN. Followed the below steps and configuration, now getting 415 Unsupported Media type.
Downloaded the font-awesome-4.7.0.zip file from here
Extracted it to the local project
updated the html file to load the "fontawesome.min.css" file from local instead from CDN
After that, now getting 415 (Unsupported Media Type)
.../font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 net::ERR_ABORTED 415 (Unsupported Media Type)
Referrer: .../font-awesome/css/font-awesome.min.css
Original code:
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/fontawesome.min.css">
Updated code:
<link rel="stylesheet" href="font-awesome/css/font-awesome.min.css">
The invoking code from