Client-Side Rendering

A Nuxt app can be generated entirely at build time.

You just need to set it with the routeRules option:

export default defineNuxtConfig({
  routeRules: {
    '/**': { prerender: true }
  }
})

The app will be able to get served without an app server.