blob: 42a24eb54e7e4bc45fd7775dbeb8797f67925c14 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
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.*"));
}
}
}
|