Back to Nuxt

Runtime Config

docs/4.api/5.kit/10.runtime-config.md

4.4.4573 B
Original Source

useRuntimeConfig

At build-time, it is possible to access the resolved Nuxt runtime config.

Type

ts
function useRuntimeConfig (): Record<string, unknown>

updateRuntimeConfig

It is also possible to update runtime configuration. This will be merged with the existing runtime configuration, and if Nitro has already been initialized it will trigger an HMR event to reload the Nitro runtime config.

Type

ts
function updateRuntimeConfig (config: Record<string, unknown>): void | Promise<void>