0
marcosli created
Hi,
My application is SPA and I'm having problems with minification when deploying to Azure. Angular cant resolve dependency injection because the names are changed. So i tried to explicitly Inject Dependencies or using an inline annotation, just like is said in that page [https://scotch.io/tutorials/declaring-angularjs-modules-for-minification]) but didnĀ“t work for me.
For the moment, i'm clearing the transformation by doing this in the Bundles:
foreach (var item in bundles)
{
item.Transforms.Clear();
}
Anyone is have this problem when deploying to Azure?