I'm experiencing an issue with my bundle.config file. I've added some CSS files with the correct path and even rebuilt the solution, but none of the new files are showing up on the page.
<?xml version="1.0" encoding="utf-8" ?>
<bundles version="1.0">
<styleBundle path="~/Content/css">
<include path="~/Content/bootstrap.css" />
<include path="~/Content/style.css" />
<include path="~/fonts/fontawesome/fontawesome.css" />
</styleBundle>
</bundles>
The main style file I'm working with is style.css, along with some other font-related files, but for some reason, they're not loading properly. I've looked into solutions that mention .min.css files might not be supported, so I removed those, but it still hasn't fixed the issue.