The next generation of the Teknik Services. Written in ASP.NET.
https://www.teknik.io/
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.
39 lines
1.6 KiB
39 lines
1.6 KiB
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) |
|
{ |
|
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 ScriptBundle("~/bundles/markdown").Include( |
|
"~/Scripts/PageDown/Markdown.Converter.js", |
|
"~/Scripts/PageDown/Markdown.Sanitizer.js")); |
|
|
|
bundles.Add(new ScriptBundle("~/bundles/common").Include( |
|
"~/Scripts/common.js")); |
|
|
|
bundles.Add(new StyleBundle("~/Content/CSS/Common").Include( |
|
"~/Content/CSS/bootstrap.css", |
|
"~/Content/CSS/font-awesome.css", |
|
"~/Content/CSS/Site.css")); |
|
} |
|
} |
|
}
|
|
|