You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.6 KiB
38 lines
1.6 KiB
using System.Web;
|
|
using System.Web.Optimization;
|
|
|
|
namespace Warehouse
|
|
{
|
|
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*"));
|
|
|
|
// Use the development version of Modernizr to develop with and learn from. Then, when you're
|
|
// 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"));
|
|
|
|
bundles.Add(new StyleBundle("~/Content/css").Include(
|
|
"~/Content/bootstrap.css",
|
|
"~/Content/site.css"));
|
|
|
|
bundles.Add(new ScriptBundle("~/3rd/js").Include(
|
|
"~/3rd/bootstrap-3.3.7-dist/js/bootstrap.min.js",
|
|
"~/3rd/AdminLTE/dist/js/adminlte.min.js",
|
|
"~/3rd/AdminLTE/dist/js/savesidebarstatus.js",
|
|
"~/3rd/AdminLTE/bower_components/jquery-slimscroll/jquery.slimscroll.min.js",
|
|
"~/3rd/moment/moment-with-locales.min.js"
|
|
));
|
|
}
|
|
}
|
|
}
|
|
|