I\'m a bit confused on the correct way to bundle script and style files. Currently, my BundleConfig.cs looks like this:
bundles.Add(new ScriptBundle(\"~/bun
If you are always using all of the files than go ahead and stick them in two bundles; one for the javascript and one for the styles. Fewer bundles means fewer requests to the server to fetch the resources, which may result in marginally better performance on the first hit; subsequently the files will be cached by the browser.
If you are not always using all of the files than it makes more sense to break them out into more bundles.