Adding Webfont Files as MIME types to the Web Server

I added some font awesome icons to my page. And I am getting an error that says that fontawesome-webfont.woff2, woff, and ttf are not found 404.
When I added BS4 -> minty - It added the font awesome link automatically that is located in boostrap/4/css/

If I overwrite this link and put the CDN for fontawesome - it gets overwritten with the link that is there now, however, it is producing that 404 error. Any thoughts on why this is happening?

This may be worth a try, switch to the normal CDN from the frameworks without minty then swap out this line with this and see if it possibly works correctly.

FROM
  <link rel="stylesheet" type="text/css" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
TO
  <link rel="stylesheet" type="text/css" href="https://stackpath.bootstrapcdn.com/bootswatch/4.1.3/minty/bootstrap.min.css">

Original topic

Are you using Windows IIS for your hosting platform?

No I am using Linux.

Well I don’t know about Linux, but I know in Windows you have to allow for the additional Mime type for the Wolf font extension.

`<system.webServer>
<staticContent>
    <mimeMap fileExtension=".woff" mimeType="application/font-woff" />
    <mimeMap fileExtension=".woff2" mimeType="application/font-woff2" />
</staticContent>

</system.webServer>`

See for apache and other web servers on Linux:

Not at office yet. But the ttf doesn’t work either.