Skip to main content

Posts

Showing posts with the label How to minify angularjs scripts

"How to" Minify AngularJs Scripts?

Hello Everyone, I am facing issues when " minify AngularJs Scripts " and I am using ASP.Net MVC 5 with AngularJs 1.4. The " minify " AngularJs scripts Steps as below, Stayed Informed  -  AngularJs Minification Problems and Solutions //Step 1. Added the angularjs script file in BundleConfig class i.e. #region CART //----------------SEPERATOR BY PAGE---------------------------------------- bundles.Add( new ScriptBundle( "~/bundles/cart_myshoping" ) .Include( "~/Scripts/app/OtherJs/vm.myshoping.cart.js" )); //----------------SEPERATOR BY PAGE---------------------------------------- #endregion //Step 2. Render the minified script on CSHTML page. @Scripts.Render( "~/bundles/cart_myshoping" ) Q: - Please anyone can give me idea how to resolve these issues? Ans: - Try the example of the code shown in this page. Stayed Informed  -  AngularJs Minification Problems and Solutions ...