Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to fix "Eliminate render-blocking JavaScript and CSS in above-the-fold content in Magento

I have minified js and css and optimized images. Used async="async" in js where it is applicable. How to fix "Eliminate render-blocking JavaScript and CSS in above-the-fold content"

Any Ideas?

like image 465
Yogesh Avatar asked Jan 01 '26 02:01

Yogesh


1 Answers

Render means loading, so if something is render-blocking, it means that it is keeping the page from loading as quickly as it could.

1) load css in the headers but Js in the footer

2) Use sprite images

3) You can add htaccess code for for better performance

  • Gzip compression
  • set Expires and Cache-Control headers
  • Browser cache-control

4) Load only required css/js on pages

Choose Best Method Once you’ve identified which scripts need to be moved it is time to decide “how” to fix them. There are two main methods to choose from. The first is to make the scripts inlined; in this method the contents of the script are added directly into the HTML of the page and are only loaded once they are needed. This is the best option if the script is small and applies to a single page.

Another option is to defer the script. When you defer JavaScript you are delaying any non-essential scripts from loading until after the first render or until after the more essential portions have loaded. This method is best when the script is not crucial and can wait to load.

PS:- We can not resolve this fully in some cases.

I Hope it's helpful for you

like image 50
Randhir Yadav Avatar answered Jan 03 '26 14:01

Randhir Yadav



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!