Skip to main content
reloadNuxtApp will perform a hard reload of your app, re-requesting a page and its dependencies from the server.
By default, it will also save the current state of your app (that is, any state you could access with useState).
You can enable experimental restoration of this state by enabling the experimental.restoreState option in your nuxt.config file.

Type Signature

Parameters

ReloadNuxtAppOptions
Options object to configure the reload behavior.

Examples

Basic Reload

Reload with Custom Path

Force Reload

Reload with State Persistence

See Also