I do not understand what I am missing here. As far as I can tell, I followed the instructions here . But my css package still doesn't get the grade.
Here is my RegisterBundles code:
public static void RegisterBundles(BundleCollection bundles) { bundles.UseCdn = true; BundleTable.EnableOptimizations = true; bundles.Add(new ScriptBundle("~/bundles/otherjquery").Include( "~/App_Themes/Travel2/Script/jquery-ui.min.js", "~/Scripts/jquery.validate.unobtrusive.js", "~/Scripts/jquery.unobtrusive-ajax.js")); Bundle availabiltyResult = new StyleBundle("~/bundles/css/availabiltyResult").Include( "~/CSS/Travel2/Air.css", "~/CSS/Travel2/Air/AvailabiltyResults.css" ); availabiltyResult.Transforms.Add(new CssMinify()); bundles.Add(availabiltyResult); }
I disabled debugging in my web.config by removing <compilation debug="true"> . I see js getting bundled and minimized:

but css gets bundled but not minimized:

What am I missing here?
source share