Web Studio is here! An enhanced experience to make it easier to create, preview, and collaborate on your website contentLearn More
When it comes time to deploying your Nuxt.js site, you have two options. You can deploy it either as a Server-Side Rendered site (SSR) or as a Statically Generated site (SSG).
With static site generation, you can render your application during the build phase and deploy it to any static hosting services such as Netlify, GitHub pages, Vercel etc. This means that no server is needed in order to deploy your application.
Deploy to Amazon Web Services (AWS)
Deploy to Azure Static Web Apps
If you're deploying your Nuxt.js site as a Statically Generated Site (SSG), you'll need to rebuild the site in order to see the updated content when content has changed in Agility.
See how you can rebuild your site when content changes.
Server-side rendering (SSR), is the ability of an application to contribute by displaying the web-page on the server instead of rendering it in the browser. Server-side sends a fully rendered page to the client; the client's JavaScript bundle takes over which then allows the Vue.js app to hydrate.