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
Well, in our case we lazily load all of the CSS files by importing them with SystemJS, which benefits us with faster initial load times. Bundling all of the CSS into one file is a bit of an "old story". Nowadays, with HTTP/2 already becoming available everywhere, there is no point of doing that.
And with SystemJS it's quite simple: import 'my-styles.css!'
index.html could have CSS file included:
<link rel="stylesheet" href="app/app.css" type="text/css" media="all" />
The text was updated successfully, but these errors were encountered: