I'm configuring SDI OSGi config, referencing - https://experienceleague.adobe.com/docs/experience-manager-learn/foundation/development/set-up-sling-dynamic-include.html?lang=en
The issue I'm facing is that:
If I set Only 1 resource type in the config property -
include-filter.config.resource-types="[my-app/components/content/highly-dynamic]" - it works.
But if I set more than 1 resource type in the config property -
include-filter.config.resource-types="[my-app/components/content/highly-dynamic, my-app/components/content/highly-dynamic2,my-app/components/content/highly-dynamic3]" - SDI works for only first entry(my-app/components/content/highly-dynamic) and not the others.
So if I reverse the sequence,
include-filter.config.resource-types="[my-app/components/content/highly-dynamic3, my-app/components/content/highly-dynamic2,my-app/components/content/highly-dynamic]" - SDI still works for only first entry(my-app/components/content/highly-dynamic3) and not the others.