From f425c7a578e606b80b8433a6e926d7902f71c203 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Ollivier?= Date: Wed, 19 Oct 2022 12:30:48 +0200 Subject: [PATCH] docs: fix broken link --- docs/content/3.api/1.composables/use-runtime-config.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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"} ::