Files
MoonPro.net/MP-LAND/App_Start/BundleConfig.cs
T
Samuele E. Locatelli d6f1e05d7e Fix font x LAND
2021-02-01 16:48:04 +01:00

40 lines
1.5 KiB
C#

using System.Web.Optimization;
namespace MP
{
public class BundleConfig
{
#region Public Methods
// For more information on bundling, visit http://go.microsoft.com/fwlink/?LinkId=301862
public static void RegisterBundles(BundleCollection bundles)
{
bundles.Add(new ScriptBundle("~/bundles/jquery").Include(
"~/Scripts/jquery-{version}.js"));
bundles.Add(new ScriptBundle("~/bundles/jqueryval").Include(
"~/Scripts/jquery.validate*"));
// Use the development version of Modernizr to develop with and learn from. Then, when you're
// ready for production, use the build tool at http://modernizr.com to pick only the tests you need.
bundles.Add(new ScriptBundle("~/bundles/modernizr").Include(
"~/Scripts/modernizr-*"));
bundles.Add(new ScriptBundle("~/bundles/bootstrap").Include(
"~/Scripts/bootstrap.js",
"~/Scripts/respond.js"));
bundles.Add(new StyleBundle("~/Content/bootstrap").Include(
"~/Content/bootstrap.css"));
bundles.Add(new StyleBundle("~/Content/css").Include(
"~/Content/font-awesome.css",
"~/Content/fonts.css",
"~/Content/Site.css"));
BundleTable.EnableOptimizations = true;
}
#endregion Public Methods
}
}