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">