I was experimenting with asp.net mvc controls for our new project. I have observed that bundle size of scripts seems to be big. Is it normal or I am doing some thing wrong
my bundle.config looks like this
public static void RegisterBundles(BundleCollection bundles)
{
BundleTable.EnableOptimizations = true;
//bundles.Add(new ScriptBundle("~/bundles/jquery").Include(
// "~/Scripts/jquery-{version}.js"));
bundles.Add(new ScriptBundle("~/bundles/jqueryval").Include(
"~/Scripts/jquery.validate*"));
// Use the development version of Modernizr to develop with and learn from. Then, when you're
// ready for production, use the build tool at http://modernizr.com to pick only the tests you need.
bundles.Add(new ScriptBundle("~/bundles/modernizr").Include(
"~/Scripts/modernizr-*"));
bundles.Add(new ScriptBundle("~/bundles/ejscripts").Include(
"~/Scripts/jquery.easing-1.3.min.js",
"~/Scripts/jquery.globalize.min.js",
"~/Scripts/jsrender.min.js",
"~/Scripts/ej/ej.web.all.min.js",
"~/Scripts/ej/ej.unobtrusive.min.js"));
bundles.Add(new ScriptBundle("~/bundles/bootstrap").Include(
"~/Scripts/bootstrap.js",
"~/Scripts/respond.js"));
bundles.Add(new StyleBundle("~/Content/css").Include(
"~/Content/bootstrap.css",
"~/Content/site.css"));
//bundles.Add(new StyleBundle("~/Content/ej/bootstrap-theme/css").Include(
// "~/Content/ej/web/bootstrap-theme/ej.web.all.min.css",
// "~/Content/ej/web/responsive-css/ej.responsive.css",
// "~/Content/ej/web/responsive-css/ejgrid.responsive.css"
// ));
}