Search⌘ K
AI Features

Building for Production

Explore the process of preparing Vue 3 and Nuxt applications for production. Understand building strategies including Single-Page Applications, Server-Side Rendering, and Static Site Generation. Learn how to configure deployment, manage dynamic routes, and optimize your app’s delivery to users.

Once our new site or application is built with Nuxt, the next step is to run the build process and prepare our code to be deployed.

Single-page application (SPA)

If we choose the SPA mode when creating the project (or if we set the ssr setting to false in nuxt.config.js), we can build our code as a normal front-end app.

Universal application

For SSR apps, we need to copy our ...