37 lines
1.4 KiB
C#
37 lines
1.4 KiB
C#
using System.Web;
|
|
using System.Web.Optimization;
|
|
|
|
namespace HOME
|
|
{
|
|
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("~/bundles/jquery").Include(
|
|
"~/Scripts/jquery-{version}.js"));
|
|
|
|
bundles.Add(new ScriptBundle("~/bundles/jqueryval").Include(
|
|
"~/Scripts/jquery.validate*"));
|
|
|
|
// Utilizzare la versione di sviluppo di Modernizr per eseguire attività di sviluppo e formazione. Successivamente, quando si è
|
|
// ready for production, use the build tool at https://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/css").Include(
|
|
//"~/Content/font.css",
|
|
//"~/Content/site.css",
|
|
"~/Content/bootstrap.css"
|
|
));
|
|
bundles.Add(new StyleBundle("~/Content/iconfonts").Include(
|
|
"~/Content/font-awesome/css/all.css"
|
|
));
|
|
}
|
|
}
|
|
}
|