The ComponentType property is used to specify the type of the external object to be used. This is the name that will be passed and associated to the front-end script. The property value should also include a path to the object.
Is a unique property of WebComponent.
To give access for public resources in the WebComponent widget, add the following rule to jetty:
<Call name="addRule">
<Arg>
<New class="org.eclipse.jetty.rewrite.handler.HeaderPatternRule">
<Set name="pattern">/public/*</Set>
<Set name="headerName">Content-Security-Policy</Set>
<Set name="add">false</Set>
</New>
</Arg>
</Call>