I am using Kendo UI in an MVC4 application. I've decided I want to move my CSS and JS references to bundles. I created a bundle like so:
bundles.Add(new StyleBundle("~/bundles/baseCSS").Include(
"~/Content/CSS/Shared/Site.css",
"~/Content/CSS/plugins/jquery.jgrowl.css",
"~/Content/Kendo/kendo.common.min.css",
"~/Content/Kendo/kendo.blueopal.min.css"));
I reference the bundle in my _Layout.cshtml like so:
Styles.Render("~/bundles/baseCSS")
The HTML of my page (in debug mode) renders only the site.css and jquery.jgrowl.css references. If I rename the kendo CSS files and remove the "min" part of their name and change the string in my bundle, it works fine. Why can't I reference a .min?
Also, I have explicitly disabled optimization in the BundleConfig.