To resolve the render-blocking javascript typekit fonts which shows in Google Pagespeed insight all you need to do is add async attribute in the script. For example:
Before:
<script src=”https://use.typekit.net/ota8ujp.js” async></script
After
<script src=”https://use.typekit.net/ota8ujp.js” async></script
Also put the script to footer so that it does not cause the render-blocking anymore
Advertisements