A JavaScript module on your page is loading synchronously, which can block the rendering of your page. Modern JavaScript modules should be loaded asynchronously to prevent them from delaying the display of content to users.
<script type="module" src="/js/app.js"></script>
Add the `async` attribute to module scripts to prevent them from blocking page rendering.
<script type="module" src="/js/app.js" async></script>
Async loading allows the browser to continue parsing and rendering the page while the module downloads and executes, leading to faster perceived performance and better Core Web Vitals scores.
This issue can affect your site's search engine rankings and user experience. Addressing it promptly helps ensure optimal performance and visibility in search results.
Black SEO Analyzer automatically checks for this warning during site analysis, along with hundreds of other technical SEO issues.
Choose the license that fits your needs and start getting the deep, actionable insights you deserve.