Expand my Community achievements bar.

Don’t miss the AEM Skill Exchange in SF on Nov 14—hear from industry leaders, learn best practices, and enhance your AEM strategy with practical tips.
SOLVED

AEM assets preload

Avatar

Level 3

How to optimize clientlibs generation speed in AEM Core Components using a Sling Model for automatic asset preloading?

I'm looking for best practices to speed up clientlibs generation in AEM when using Core Components. Specifically, I want to:

  1. Optimize the clientlibs load time.
  2. Automatically generate preload links for critical assets (CSS, JS, fonts, etc.) using a Sling Model.
1 Accepted Solution

Avatar

Correct answer by
Community Advisor

The js include essentially generate script tag which itself doesn't support preload attribute. You can check if https://developer.mozilla.org/en-US/docs/Web/HTML/Element/script#fetchpriority is helpful otherwise you can take a look at their implementation https://github.com/wcm-io/io.wcm.wcm.ui.clientlibs/tree/develop and enhance it as per your requirements.
Hope this helps.

View solution in original post

4 Replies

Avatar

Community Advisor

You can take a look at https://wcm.io/wcm/ui/clientlibs/usage.html which possibly allows preload for stylesheets as well as deferred or async load for js.
Hope this helps.

Avatar

Correct answer by
Community Advisor

The js include essentially generate script tag which itself doesn't support preload attribute. You can check if https://developer.mozilla.org/en-US/docs/Web/HTML/Element/script#fetchpriority is helpful otherwise you can take a look at their implementation https://github.com/wcm-io/io.wcm.wcm.ui.clientlibs/tree/develop and enhance it as per your requirements.
Hope this helps.

Avatar

Community Advisor

Hi @Mohammed-Skouti 
Aprt from what @h_kataria mentioned.
You can rely on TTL based browser caching with clientlibs hashing. This will avoid making GET request to CDN for clientlibs 



Arun Patidar