ASP_MVC webClient tillagd
This commit is contained in:
26
MVCUI/App_Start/BundleConfig.vb
Normal file
26
MVCUI/App_Start/BundleConfig.vb
Normal file
@ -0,0 +1,26 @@
|
||||
Imports System.Web.Optimization
|
||||
|
||||
Public Module BundleConfig
|
||||
' For more information on bundling, visit https://go.microsoft.com/fwlink/?LinkId=301862
|
||||
Public Sub RegisterBundles(ByVal bundles As BundleCollection)
|
||||
|
||||
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"))
|
||||
End Sub
|
||||
End Module
|
||||
|
||||
Reference in New Issue
Block a user