While reading various articles, I have noticed a common suggestion to explicitly bundle each jQueryUI .css
file, such as the answer provided on How to add jQueryUI library in MVC 5 project?. However, upon examining the .css
files within the Content/themes/base
directory generated by Nuget, I came across the file named all.css
, which actually combines all the other CSS files.
Personally, it seems more straightforward to just bundle the all.css
file. Yet, there's a lingering thought about whether the css @import
directives utilized in this file will still function properly in a script bundle.