diff --git a/docs/content/3.api/1.composables/use-runtime-config.md b/docs/content/3.api/1.composables/use-runtime-config.md index 94700ee99ff..6f8aeb08d10 100644 --- a/docs/content/3.api/1.composables/use-runtime-config.md +++ b/docs/content/3.api/1.composables/use-runtime-config.md @@ -40,7 +40,7 @@ export default defineNuxtConfig({ Variables that need to be accessible on the server are added directly inside `runtimeConfig`. Variables that need to be accessible on both the client and the server are defined in `runtimeConfig.public`. :: -::ReadMore{link="/guide/features/runtime-config"} +::ReadMore{link="/guide/going-further/runtime-config"} :: ## Acess Runtime Config @@ -69,7 +69,7 @@ In this example, since `apiBase` is defined within the `public` namespace, it is It is possible to update runtime config values using a matching environment variable name prefixed with `NUXT_`. -::ReadMore{link="/guide/features/runtime-config"} +::ReadMore{link="/guide/going-further/runtime-config"} :: ### Using the `.env` File @@ -135,5 +135,5 @@ export default defineEventHandler((event) => { }) ``` -::ReadMore{link="/guide/features/runtime-config"} +::ReadMore{link="/guide/going-further/runtime-config"} ::