I have a angular project built in Visual Studio using the angular-kendo directive add-on and it works fine until I enable optimizations in the bundle.config file then it throws these errors:
I am just curious if anybody has had experience with this or what? I suspect that the angular-kendo.js file just isn't set up using an array so when it is bundled the parameter names get shortened which is what breaks everything but does anybody know how to fix it? Thanks in advance.
I would like to say thanks to null above, his answer was the best possible with what little information I provided. It turned out my main kendo bundle was the one that was breaking everything, for some reason when it tried to minify either the kendo.all.js or the kendo.all.min.js file, it broke it. I fixed the issue by using the already minified version of that file and only bundling and not minifying this particular bundle. This is done by simply creating a new "Bundle" instead of "ScriptBundle" as shown here:
vs.
Thanks again to null!