Expand my Community achievements bar.

SOLVED

How to put defer attribute to AEM js libraries - to avoid render blocking issue.

Avatar

Level 1

ajeemaw_0-1615810270055.png

The above 2 resources are loading inside head element. but I could not find those in source code. I need to know where I can find this call & How can I put defer attribute to that?

1 Accepted Solution

Avatar

Correct answer by
Employee

Be careful about overlaying the OOTB headlibs.html and friends - there is a reason why Core Components Page has already seeded the implementation with "customheaderlibs.html" .. its because that's where you should put yours so you're not overlaying the provided one. If you overlay the provided HTML, what happens when Core Components/product changes something about them? Now you're stuck trying to manually reconcile changes down. Also, you lose the ability to use the clientlib include HTML template, which again, can evolve as new capabilities are added to the product.

 

 

View solution in original post

8 Replies

Avatar

Community Advisor

To Organize and optimize the serving of complex JavaScript and CSS code, AEM provides Client-side Library Folders, which allow you to store your client-side code in the repository, organize it into categories, and define when and how each category of code is to be served to the client. 

 

Reference : https://experienceleague.adobe.com/docs/experience-manager-65/developing/introduction/clientlibs.htm...

 

Avatar

Community Advisor

These files are coming on the page because of client library "cq.foundation-main".

 

It seems you have created the page component by inheriting OOTB page component.

This OOTB page component has a headlibs.html file, through which this specific clienlib has been included.

 

 

You can overwrite this headlibs.html in your page component and include your project-specific clientlib in that or just leave it empty if you don't want to use it.

Avatar

Employee

Since these are included via the ClientLibrary Manager in AEM you can't manipulate the HTML tag used.


You could write a Sling Pipeline Transformer to add a new attribute to the tag tho, similar to [1].

 

 

[1] https://github.com/Adobe-Consulting-Services/acs-aem-commons/blob/master/bundle/src/main/java/com/ad...

Avatar

Community Advisor

Hi @ajeemaw 

You cannot put a defer/async attribute to the clientlib files as this is currently not an OOTB feature supported by AEM. If you do not need these files to be loaded on the head section, you can overlay headlibs.html and add your custom code to load the required project specific clientlibs.

Please refer the file below from where the JS files are getting loaded.
https://github.com/adobe/aem-core-wcm-components/blob/development/content/src/content/jcr_root/apps/...

Hope this helps!

Thanks!

Avatar

Correct answer by
Employee

Be careful about overlaying the OOTB headlibs.html and friends - there is a reason why Core Components Page has already seeded the implementation with "customheaderlibs.html" .. its because that's where you should put yours so you're not overlaying the provided one. If you overlay the provided HTML, what happens when Core Components/product changes something about them? Now you're stuck trying to manually reconcile changes down. Also, you lose the ability to use the clientlib include HTML template, which again, can evolve as new capabilities are added to the product.

 

 

Avatar

Community Advisor

@ajeemaw - It seems like these are OOTB scripts. Can you verify what these scripts are doing ?

Thanks,
Nikhil Kumar