DEV Community

Jen C.
Jen C.

Posted on

1 1 1

Optimize Core Web Vitals - FCP and LCP: Render-blocking resources

Resources

Network panel: Analyze network load and resources

<script>: The Script element - async

<script>: The Script element - defer

dangerouslySetInnerHTML

Goal

  • Identify render-blocking resources and reduce the amount of them

Step-by-step

Inspect Chrome Dev Tools

Check what resources were loaded before the homepage (index.js) and whether they need to be loaded.

Chrome DevTools -> Network -> right click on the tabs -> check Waterfall to show the Waterfall column

Image description

Image description

In the Overview block, until can see all the resources load clear before the orange line in the Waterfall cloumn

Image description

Check codes to find out these resoures

For example, the shared document page is as follows. Check each .js file in each <script> to understand its purpose.

Let's see if the use of <script> allows us to add async or defer:

<body>

    ...

    <script src={`${MY_AUTH_URL}/sso/sso.js`} />

    <script src='/static/icons/svgxuse.js' />

    <script
        dangerouslySetInnerHTML={{
        __html: localeDataScript,
    }}
    />

    ...

</body>
Enter fullscreen mode Exit fullscreen mode

Since <script src={${MY_AUTH_URL}/sso/sso.js} /> loads the authentication API script from a different domain than our application and is only used when the user is logged out, we can add async

After changes: <script async src={${MY_AUTH_URL}/sso/sso.js} />

According to svgxuse. The script <script src='/static/icons/svgxuse.js' /> is a lightweight polyfill for retrieving and loading external SVGs referenced in <use> elements.

Although the script is loaded from within the application and not externally, inspection of the source code revealed that it loads an external resource "http://www.w3.org/1999/xlink".

...

 };
    var xlinkNS = 'http://www.w3.org/1999/xlink';
    checkUseElems = function () {
      var base;
      var bcr;
      var fallback = '';

...
Enter fullscreen mode Exit fullscreen mode

Because this script is a polyfill, which is designed to enhance browser capabilities, it does not need to be loaded immediately. We can add the defer attribute to it.

After changes: <script defer src='/static/icons/svgxuse.js' />

The following script is used to set the HTML content within the element

<script
    dangerouslySetInnerHTML={{
    __html: localeDataScript,
    }}
/>
Enter fullscreen mode Exit fullscreen mode

After inspection, it is not known when/which scripts are loaded, so there is no need to add defer or async to prevent unexpected content rendering.

Image of Quadratic

Cursor for data analysis

The AI spreadsheet where you can do complex data analysis with natural language.

Try Quadratic free

Top comments (0)

AWS Security LIVE!

Tune in for AWS Security LIVE!

Join AWS Security LIVE! for expert insights and actionable tips to protect your organization and keep security teams prepared.

Learn More

👋 Kindness is contagious

If you found this post helpful, please leave a ❤️ or a friendly comment below!

Okay