Possible Duplicate:
mvc4 bundler not including .min files
I am trying to include a JS file into my bundles.
I register new bundle in BundleConfig.cs file like so:
bundles.Add(new ScriptBundle("~/bundles/toastr").Include(
"~/Scripts/toastr.min.js"));
And then I call it in my master page like so:
@Scripts.Render("~/bundles/toastr")
And it is not being rendered in the HTML page.
Am I missing something?