In a .NET MVC4 project how does @Styles.Render works?
.NET MVC4
@Styles.Render
I mean, in @Styles.Render(\"~/Content/css\") which file is it calling?>
@Styles.Render(\"~/Content/css\")
Watch out for case sensitivity. If you have a file
/Content/bootstrap.css
and you redirect in your Bundle.config to
.Include("~/Content/Bootstrap.css")
it will not load the css.