refabrique, pour chaine de connection en statique

This commit is contained in:
2016-06-07 15:59:14 +02:00
parent ab950ed3aa
commit 5b195c87d8
3 changed files with 72 additions and 46 deletions

View 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"
));
}
}
}