I have an existing .net core MVC (Which also includes CMS) App which renders all the html in the server-side and return it to the clients or browsers. Right now I am trying to build widgets in react which will work individually (It also has API calls to fetch data for that widget), which is working perfectly fine and renders everything in the client-side
But, I want to make the react part to render it on server-side itself along with the data inflated, So it will be SEO compliant and also I can cache the entire page in CDN.
I have looked on the AspNet.Spaservices.extension which has all the boxes tick, but i want to build a renderer service which can be used by other applications.
Any blogs or samples or tutorials or any packages, Please share it across in the comments.
Right now i am trying to build a express app which can acts as a renderer, but i stuck on where to place the react code base.