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
Overall our css is pretty good, but we have a few bits that can be sped up. First, bootstrap needs to be inlined into our regular CSS. Right now it's a separate file (bootstrap.min.css), which needs to be loaded. That's why there's a flash of unstyled content at the beginning. There's two options here: the optimal one is to literally inline it into the index.html. This requires a little bit of setup in gulp, but it'd be the fastest. The second is to add it to main-index.css. This is less work, but it doesn't completely fix the loading times
The text was updated successfully, but these errors were encountered:
Overall our css is pretty good, but we have a few bits that can be sped up. First, bootstrap needs to be inlined into our regular CSS. Right now it's a separate file (bootstrap.min.css), which needs to be loaded. That's why there's a flash of unstyled content at the beginning. There's two options here: the optimal one is to literally inline it into the index.html. This requires a little bit of setup in gulp, but it'd be the fastest. The second is to add it to main-index.css. This is less work, but it doesn't completely fix the loading times
The text was updated successfully, but these errors were encountered: