Skip to content
This repository has been archived by the owner on Apr 6, 2023. It is now read-only.

docs: fix broken link #8319

Merged
merged 2 commits into from Oct 19, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/content/3.api/1.composables/use-runtime-config.md
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -135,5 +135,5 @@ export default defineEventHandler((event) => {
})
```

::ReadMore{link="/guide/features/runtime-config"}
::ReadMore{link="/guide/going-further/runtime-config"}
::