Hi @src_aem_dev ,
XF does not load project client libs by default, you need to specify in the XF page to load your project clientlibs.
If you are using dynamic/editable template then you can use policy to load clientlibs
Example
<!-- Template Policy -->
<jcr:root xmlns:sling="http://sling.apache.org/jcr/sling/1.0" xmlns:cq="http://www.day.com/jcr/cq/1.0" xmlns:jcr="http://www.jcp.org/jcr/1.0" xmlns:nt="http://www.jcp.org/jcr/nt/1.0" jcr:primaryType="cq:Page">
<jcr:content
cq:policy="myapp/components/structure/xf-page/policy_xf_page"
jcr:primaryType="nt:unstructured"
sling:resourceType="wcm/core/components/policies/mappings">
<root
cq:policy="wcm/foundation/components/responsivegrid/policy_xf_allow_comp"
jcr:primaryType="nt:unstructured"
sling:resourceType="wcm/core/components/policies/mapping" />
</jcr:content>
</jcr:root>
<!-- Policy -->
<xf-page
jcr:primaryType="nt:unstructured">
<policy_xf_page
jcr:primaryType="nt:unstructured"
jcr:title="XF Page Policy"
sling:resourceType="wcm/core/components/policy/policy"
clientlibs="[myapps.main]" />
</xf-page>