123456789101112131415161718192021222324252627282930313233343536 |
- using System.Web;
- using System.Web.Optimization;
-
- namespace Teknik
- {
- public class BundleConfig
- {
- // For more information on bundling, visit http://go.microsoft.com/fwlink/?LinkId=301862
- public static void RegisterBundles(BundleCollection bundles)
- {
- BundleTable.EnableOptimizations = true;
-
- bundles.Add(new StyleBundle("~/Content/Common").Include(
- "~/Content/bootstrap.css",
- "~/Content/font-awesome.css",
- "~/Content/teknik.css"));
-
- bundles.Add(new ScriptBundle("~/bundles/common").Include(
- "~/Scripts/jquery-{version}.js",
- "~/Scripts/jquery.validate*",
- "~/Scripts/common.js",
- "~/Scripts/bootstrap.js",
- "~/Scripts/bootstrap-select.js",
- "~/Scripts/respond.js"));
-
- // 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/markdown").Include(
- "~/Scripts/PageDown/Markdown.Converter.js",
- "~/Scripts/PageDown/Markdown.Sanitizer.js"));
- }
- }
- }
|