| 1234567891011121314151617181920212223242526 |
- using System.Web;
- using System.Web.Optimization;
- namespace CD67.ModeleMVC.MVC
- {
- public class BundleConfig
- {
- // 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*"));
- bundles.Add(new ScriptBundle("~/bundles/bootstrap").Include(
- "~/bower_components/bootstrap/dist/js/bootstrap.min.js",
- "~/Scripts/respond.js"));
- bundles.Add(new StyleBundle("~/Content/css").Include(
- "~/Content/bootstrap.min.css",
- "~/style/*.css"));
- }
- }
- }
|