Dear Fynd-Team,
It would be very helpful to get some insights into how you handle Server-Side Rendering, such as which libraries you use and how you configure them.
This is necessary, e.g., when people (like us) want to use lower-level web technologies like web components on your platform, as those require custom configuration based on how your SSR-Setup looks like.
It would be cool if someone could share or point me toward existing resources related to this.
Thank you for your support!
Hi @LilithWittmann
For server-side rendering (SSR), we utilize the Vue.js SSR library. This library allows us to leverage Vue’s efficient rendering capabilities and seamlessly integrate with various web components.
You can refer to this link Getting Started | Vue SSR Guide
Hey @SoumyaAcharya,
do you also use the Vue.js SSR lib for your React templates? (Sorry forgot that there is not only the react but also the legacy vue version when asking this question)
Thanks,
Lilith
No, we do not use the Vue.js SSR library for our React templates. Vue.js SSR is specifically designed for server-side rendering with Vue.js, and it is not compatible with React. For React templates, we use the standard API provided by React team in the react-dom/server module. Here is a quick reference - Server React DOM APIs – React