Hey everyone,
I recently started using Nuxt.js for a project and discovered their Server Side Rendering functionality. Before I continue, I understand SSR to be when a server loads in all the dependencies etc and then sends the HTML to the client in one stream as opposed to the client getting a webpage and then making all the individual requests.
I know that you can load up your site locally using npm run dev
but is there anyway to enable SSR with Netlify? A lot of tutorials say to use the npm run generate
but that serves static files and I don’t think that’s ‘true SSR’.