Reputation: 257
I'm developing a ASP.NET core application, and using the wwwroot/ folder to load my css, javascript, etc.
On my Visual Studio project I have the following structure:
However when I look at the loaded sources in Chrome, the "font" folder never gets loaded:
Any ideas?
Upvotes: 1
Views: 1116
Reputation: 257
Ok, found the problem.
The font files won't be loaded unless you have an element using the font, Despite having them referenced in the CSS file.
Upvotes: 1