Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System.Web;
- using System.Web.Optimization;
- namespace blogSystem
- {
- 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*"));
- // 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/css").Include(
- "~/Content/bootstrap-template.css",
- "~/Content/site.css",
- "~/Content/bootstrap-datetimepicker.min.css"));
- bundles.Add(new ScriptBundle("~/bundles/bootstrap-datetimepicker").Include(
- "~/Scripts/moment.js",
- "~/Scripts/bootstrap-datetimepicker.js"));
- bundles.Add(new ScriptBundle("~/bundles/tinymce").Include(
- "~/Scripts/tinymce/tinymce.min.js",
- "~/Scripts/tinymce/jquery.tinymcse.min.js"));
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement