using System.Web; using System.Web.Optimization; namespace Tango.TCC.Service { public class BundleConfig { // For more information on bundling, visit https://go.microsoft.com/fwlink/?LinkId=301862 public static void RegisterBundles(BundleCollection bundles) { bundles.Add(new ScriptBundle("~/Script/Bundles").Include( "~/bundles/scripts.*", "~/bundles/runtime.*", "~/bundles/polyfills.*", "~/bundles/main.*")); bundles.Add(new StyleBundle("~/Content/Styles").Include("~/bundles/styles.*")); } } }