Do you have a problem adding more than one CSS library to an Angular project?

Asked

Viewed 28 times

2

How many can I add? Is there a recommended limit? This interferes with application performance?

  • You can have as many libraries as you want, but if you are using them little, or they overlap, it would be better to remove. If you’re referring to the rendering process, it even interferes, but it’s extremely laughable, as to the loading time, yes, and much, the bigger and bigger the libraries are, the longer it will take to load them and start rendering

  • Can you verify the answer? Don’t forget to accept it if you are satisfied with it.

1 answer

2


How many can I add? As many as you want or need.

Is there any recommended limit? No. The sky is the limit.

This interferes with application performance? No (directly).

As a counterpoint to direct responses... In any web application one of the most important success parameters is the time for the user to iterate with the page. In this sense the more complex the site is (in terms of CSS and mainly JS), the more files are added, the bigger these files, the longer the site load time will be.

Some surveys show that almost 50% of users expect a page to load in less than 2 seconds.

For Walmart.com, a 1-second improvement in page loading represents a 2% increase in your conversion rate.

So there are no limits, but implications in making the page larger and more complex, making your page’s response time increase. And this action leads to a consequent increase in visitors' frustration.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.