Cordial greeting, how can it be optimized so that javascript files like jquery and other libraries common to the whole solution so that they do not recharge each time you navigate between views?.
As can be seen in the image, the download times of the browser are very high, and if done only once, it is fine, but this is repeated every time you navigate between pages
I am working with MVC 5, in the BundleConfig I have the BundleTable.EnableOptimizations = true; and the reference to javascript is in the _Layout.
In the BundleConfig I have reference the libraries that I use, which are static
bundles.Add(new ScriptBundle("~/bundles/jquery").Include(
"~/Scripts/jquery-{version}.js",
"~/Scripts/jquery.validate*"));
bundles.Add(new ScriptBundle("~/bundles/knd").Include(
"~/js/kendo.all.min.js",
"~/js/messages/kendo.messages.es-CO.min.js",
"~/js/cultures/kendo.culture.es-CO.min.js"));
BundleTable.EnableOptimizations = true;
Thanks for the guidance