WebOptimizer icon indicating copy to clipboard operation
WebOptimizer copied to clipboard

Are nested bundles possible?

Open VictorioBerra opened this issue 3 years ago • 0 comments


// Add a bundle of some pre-minified files
pipeline.AddJavaScriptBundle( "/js/bundle.min.js", "/lib/jquery/jquery.min.js", "/lib/jquery-something/jquery-something.min.js");

// minify my site.js
pipeline.MinifyJsFiles("/js/site.min.js", "/js/site.js");

// NESTED bundle with both of the above.
pipeline.AddJavaScriptBundle("/js/nested-bundle.min.js", "/js/bundle.min.js", "/js/site.min.js");

Is this possible? I am not having any luck.

VictorioBerra avatar Apr 02 '21 16:04 VictorioBerra