I already have an Angular application running in Azure Server using angular-cli to deploy.
All I have to do is run the command ng build --prod --aot
and copy everything from /dist
folder to my root website folder. Everything works great!
Because SEO issues, now I want to implement server side rendering. So I follow that universal rendering guide and I was able to create a server bundle.
Ok, so now I have 2 folders:
/dist
/dist-serv
And now? What I have to do to deploy it to Azure Server? Witch folder should I copy to my root folder so my webserver can start to pre render it?
With server side rendering, copying the files to the root folder of your server is not enough.
You'll need to run a web server (like Node.js Express) and call the renderModuleFactory up on an incoming request. See e.g. this post as an example, but there are many out there.