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)
- Default:
You can use this option to change default nuxt mode for your project using
nuxt.config.js
Deprecated: please use ssr: false
instead of mode: spa
To learn more about the ssr
option, checkout the ssr property.
To learn more about the mode
option, checkout the rendering modes section.