refabrique, pour chaine de connection en statique
This commit is contained in:
parent
ab950ed3aa
commit
5b195c87d8
3 changed files with 72 additions and 46 deletions
28
Yavsc/Startup/BundleConfig.cs
Normal file
28
Yavsc/Startup/BundleConfig.cs
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
|
||||
using System.Web.Optimization;
|
||||
|
||||
namespace Yavsc
|
||||
{
|
||||
public class BundleConfig
|
||||
{
|
||||
public static void RegisterBundles(BundleCollection bundles)
|
||||
{
|
||||
bundles.Add(new ScriptBundle("~/bundles/bootjq").Include(
|
||||
"~/bower_components/bootstrap/dist/js",
|
||||
"~/bower_components/jquery/dist/js",
|
||||
"~/bower_components/jquery.validation/dist/js",
|
||||
"~/bower_components/jquery-validation-unobtrusive/dist/js",
|
||||
"~/bower_components/bootstrap-datepicker/dist/js"));
|
||||
bundles.Add(new StyleBundle("~/Content/themes/base/css").Include(
|
||||
));
|
||||
bundles.Add(new ScriptBundle("~/bundles/markdown").Include(
|
||||
"~/bower_components/dropzone/dist/min/dropzone-amd-module.min.js",
|
||||
"~/bower_components/dropzone/dist/min/dropzone.min.js"
|
||||
));
|
||||
bundles.Add(new StyleBundle("~/Content/markdown").Include(
|
||||
"~/bower_components/dropzone/dist/min/basic.min.css",
|
||||
"~/bower_components/dropzone/dist/min/dropzone.min.css"
|
||||
));
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue