How to disable Javascript/CSS minification in ASP.NET MVC 4 Beta

前端 未结 10 1354
暗喜
暗喜 2020-12-09 10:17

I am just trying out ASP.NET MVC 4 but I can\'t figure out how to disable Javascript/CSS minification feature. Especially for development environment this will help greatly

10条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-09 10:49

    In Global.asax.cs

    #if DEBUG
            foreach (var bundle in BundleTable.Bundles)
            {
                bundle.Transform = new NoTransform();
            }
    #endif
    

提交回复
热议问题