Step 1: Add BundleTransformer.Less from Nuget
BundleTransformer.Less is an excellent modular extension to Web.Optimization by taritsyn, allowing us to get our css and js bundling set up quickly.We’re going to use the BundleTransformer.Less Nuget Package which will add the bundler core and dotless as well. This package is where most of the magic is performed. In the background it’s just setting up dotless to transform the css before bundling.
Step 2: Set up your CSS and JS bundles
A bundle is just a group of css or js references. When starting a new MVC4 project, you’ll have a file calledBundleConfig.cs
in your App_Start
folder. This is where all our css and js references will go.Take a look at how I’ve set this up:
public class BundleConfig
{
public static void RegisterBundles(BundleCollection bundles)
{
var cssTransformer = new CssTransformer();
var jsTransformer = new JsTransformer();
var nullOrderer = new NullOrderer();
var css = new Bundle("~/bundles/css")
.Include("~/Content/site.less");
css.Transforms.Add(cssTransformer);
css.Orderer = nullOrderer;
bundles.Add(css);
var jquery = new Bundle("~/bundles/jquery")
.Include("~/Scripts/jquery-1.*");
jquery.Transforms.Add(jsTransformer);
jquery.Orderer = nullOrderer;
bundles.Add(jquery);
// If you'd like to test the optimization locally,
// you can use this line to force it.
//BundleTable.EnableOptimizations = true;
}
}
A couple of things to note here:- The
cssTransformer
andjsTransformer
variables tie in the BundleTransformer to the pipeline. - The
nullOrderer
variable forces the optimizer to reference the files in the order they are defined. - The string we pass to the
Bundle
constructor is a virtual path. Don’t use a real path otherwise you’ll run into some funky routing issues. - The
BundleTable.EnableOptimizations = true;
allows you to force the optimizations to render as they would in release mode.
Step 3: Reference the Bundles in your Layout View
Open up your_Layout.cshtml
and add the following code to your head tag:@Styles.Render("~/bundles/css")
This will render any of the stylesheets we included earlier. Note
that we’re referencing the virtual path we gave to the StyleBundle
class.You can also add the javascript bundle to the bottom of the page in the same way:
@Scripts.Render("~/bundles/jquery")
That’s It!Thanks to Andrey Taritsyn for giving me some pointers about the code I’ve posted. You should absolutely check out the rest of the Bundle Transformer Range for other useful modules including SASS, CoffeeScript, YUI, JSMin, WebGrease and much more
Ref:benjii.me
No comments:
Post a Comment