docs: fix broken link (#8319)

This commit is contained in:
Clément Ollivier 2022-10-19 12:36:17 +02:00 committed by GitHub
parent ac60d362c9
commit 3ef014a378
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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"}
::