mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
851 B
851 B
title | description | links | |||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Runtime Config | Nuxt Kit provides a set of utilities to help you access and modify Nuxt runtime configuration. |
|
useRuntimeConfig
At build-time, it is possible to access the resolved Nuxt runtime config.
Type
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.
function updateRuntimeConfig (config: Record<string, unknown>): void | Promise<void>