The mode property

Change default nuxt mode


  • Type: string
    • Default: universal
    • Possible values:
      • 'spa': No server-side rendering (only client-side navigation)
      • 'universal': Isomorphic application (server-side rendering + client-side navigation)

You can use this option to change default nuxt mode for your project using nuxt.config.js

The mode Property - 图1

Deprecated: please use ssr: false instead of mode: spa

The mode Property - 图2

To learn more about the ssr option, checkout the ssr property.

The mode Property - 图3

To learn more about the mode option, checkout the rendering modes section.