--- title: Runtime Config description: Nuxt Kit provides a set of utilities to help you access and modify Nuxt runtime configuration. links: - label: Source icon: i-simple-icons-github to: https://github.com/nuxt/nuxt/blob/main/packages/kit/src/runtime-config.ts size: xs --- ## `useRuntimeConfig` At build-time, it is possible to access the resolved Nuxt [runtime config](/docs/guide/going-further/runtime-config). ### Type ```ts function useRuntimeConfig (): Record ``` ## `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. ```ts function updateRuntimeConfig (config: Record): void | Promise ```