I have the following in my BundleConfig.cs file
bundles.Add(new StyleBundle("~/Content/css").Include(
"~/Content/reset.css",
"~/Content/site.css"));
In my _Layout.cshtml file i set the styles like this
@Styles.Render("~/Content/css")
And when i set debug to false in web.config file i get this in the html source
<link rel="stylesheet" href="/Content/css?v=o98MVeaPnTOPDtb6WAqw14YyALxEnOYDmGqwfyBAiq01">
The resource from this url is not text: http://localhost:1135/Content/css?v=o98MVeaPnTOPDtb6WAqw14YyALxEnOYDmGqwfyBAiq01
</link>
And none of the styles get applied. What am i missing here?