You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the built version of Kibana, about 30 or so plugin CSS files are generated in /built_assets/css/plugins. Can we reduce this number by concatenating all these files into one large file?
Describe a specific use case for the feature:
In users' production environment, these CSS files translate to 30 or so separate outgoing requests that contribute to a high initial load time since browsers have a maximum connections limit.
The text was updated successfully, but these errors were encountered:
Well, we could do a lot to reduce the number of style sheets by just removing the uiExports.styleSheetPaths from different plugins and importing them all from a single central .scss file. With that the existing tooling would just create a single massive css file.
Concatenating the css after the fact is complicated, mostly because of source-map support. There are ways to make it work, but it pushes the LOE over my "couple hours" threshold. I've tried to do this twice now.
Describe the feature:
In the built version of Kibana, about 30 or so plugin CSS files are generated in
/built_assets/css/plugins
. Can we reduce this number by concatenating all these files into one large file?Describe a specific use case for the feature:
In users' production environment, these CSS files translate to 30 or so separate outgoing requests that contribute to a high initial load time since browsers have a maximum connections limit.
The text was updated successfully, but these errors were encountered: