I am working on an Angular 2 application and I want to incorporate wrapbootstrap. However, I am facing an issue with the fonts (bootstrap, font-awesome, google) and I am not sure how to include them.
While using the css file for wrapbootstrap, I am getting an error that it cannot locate font awesome:
"Failed to load resource: the server responded with a status of 404 (Not Found) http://localhost:8000/fonts/font-awesome/fontawesome-webfont.woff2?v=4.4.0"
I am confused because I can actually see the missing file(s) in the resources in the Chrome console at that exact location.
https://i.sstatic.net/PKUhZ.png
The font files are currently located in a folder with the following relative path from the css (application.css) file:
https://i.sstatic.net/9AD8z.png
This path matches what is required in the css file:
https://i.sstatic.net/v9vs5.png
I hope someone can offer guidance as I am feeling lost.
Thank you in advance
Solved It turns out that the issue was related to the location of my fonts folder. My file structure is as follows: https://i.sstatic.net/HJJvy.png
I initially added the fonts/ directory relative to where the application.css file was. It needed to be placed in the root of my app (src)