How does etc.clientlibs work ??
All the clientlibs are transferred from ui.frontend (dist) to ui.apps (<project_name>/clientlibs) using AEM clientlib
Then when the package is installed to AEM instance they can be found in JCR under
/apps/<project_name>/clientlibs (exact structure from ui.apps)
but in my case we are importing the clientlibs to base AEM component using the path
"/etc.clientlibs/<project_name>/clientlibs/clientlib-angular.js"
1 ) How is the GET endpoint exposed for the above path ???
2) Is there an already exisiting servlet for the same??
In my case /apps/<project_name>/clientlibs/ has all the files for me. I dont see anything inside etc/clientlibs
In the usage of clientlibs also
<script type="text/javascript" src="/etc/clientlibs/foundation/jquery.js"></script>
this is described as one of the methods of including clientlibs .
3) s etc/clientlibs also exposed from a servlet ??
4) And if etc.clientlibs AND etc/clientlibs are exposed endpoints where is it in AEM docs ??
