I have a bundling code to bundle all of my js.
bundles.Add(new ScriptBundle("~/assets/scripts").Include(
"~/Scripts/a.js",
"~/Scripts/z.js"));
After I implemented third party plugin, it will generated a js file also. Lets say it's c.js... And this c.js is not being bundled
In my page it's being rendered this way :
- script a
- script c (the third party js)
- script z
Any idea why this happening?
I used the Microsoft ASP.NET Web Optimization v1.1.3
c.jsin theInclude()list. - scottheckel