I want to make SSR in my Angular app by using Angular Universal.
The SSR work but Web-Components made with Stencil are not rendered (does not work when JS is disabled).
LitElement and Vanilla JS web components doesn't work either.
I have found that Stencil have a dist-hydrate-script
output that would make it work.
But I haven't found any documentation about it and looking at the source didn't help. (I don't know how to use the hydrateDocument()
or renderToString()
method).
Thank you =)