Pascal

Pascal

Deal with render blocking resources

Render blocking resources

JavaScript

Scripts can block rendering. To remediate this issue:

CSS

CSS can also be blocking. To mitigate this:

  • split CSS using critical tool
  • inline critical (above the fold) CSS in <style> tag
  • use media attribute to load only on targeted devices (see render blocking CSS)
  • use preload to load non critical CSS asynchronously
  • minify CSS

Resources

More information can be found reading this article.