Hi team
Anyone knows why mvc bundles breaks the kendo css?
this is my bundle in a brand new mvc project, doing this give the result find on 1.png which is the expected
bundles.Add(
new
ScriptBundle(
"~/bundles/jquery"
).Include(
"~/Scripts/jquery-{version}.js"
));
bundles.Add(
new
ScriptBundle(
"~/bundles/bootstrap"
)
.Include(
"~/Scripts/kendo/2016.1.112/angular.min.js"
)
.Include(
"~/Scripts/kendo/2016.1.112/kendo.all.min.js"
)
);
bundles.Add(
new
StyleBundle(
"~/Content/css"
).Include(
"~/content/kendo/2016.1.112/kendo.common-bootstrap.min.css"
,
"~/content/kendo/2016.1.112/kendo.bootstrap.min.css"
,
"~/Content/site.css"
));
However if I force the bundling using BundleTable.EnableOptimizations = true; I get the results on attachments 2 which does not render properly
Regards