docs: fix broken paths (#9076)

This commit is contained in:
Clément Ollivier 2022-11-16 18:21:08 +01:00 committed by GitHub
parent 7dfa2f36c3
commit fea7717291
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 10 additions and 10 deletions

View File

@ -65,7 +65,7 @@ const runtimeConfig = useRuntimeConfig()
</script>
```
:ReadMore{link="/guide/going-further/runtime-config"}
:ReadMore{link="/docs/guide/going-further/runtime-config"}
## App Configuration

View File

@ -47,5 +47,5 @@ Nuxt modules are now build-time-only, and the `buildModules` property used in Nu
Everyone has the opportunity to develop modules. Read more about developing modules in the [Module Author Guide](/docs/guide/going-further/modules).
::ReadMore{link="/guide/going-further/modules" title="Module Author Guide"}
::ReadMore{link="/docs/guide/going-further/modules" title="Module Author Guide"}
::

View File

@ -41,7 +41,7 @@ type AsyncData<DataT> = {
## Params
* **URL**: The URL to fetch.
* **Options (extends [unjs/ofetch](https://github.com/unjs/ofetch) options & [AsyncDataOptions](/api/composables/use-async-data#params))**:
* **Options (extends [unjs/ofetch](https://github.com/unjs/ofetch) options & [AsyncDataOptions](/docs/api/composables/use-async-data#params))**:
* `method`: Request method.
* `query`: Adds query search params to URL using [ufo](https://github.com/unjs/ufo)
* `params`: Alias for `query`

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/going-further/runtime-config"}
::ReadMore{link="/docs/guide/going-further/runtime-config"}
::
## Access 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/going-further/runtime-config"}
::ReadMore{link="/docs/guide/going-further/runtime-config"}
::
### Using the `.env` File
@ -135,5 +135,5 @@ export default defineEventHandler((event) => {
})
```
::ReadMore{link="/guide/going-further/runtime-config"}
::ReadMore{link="/docs/guide/going-further/runtime-config"}
::

View File

@ -5,7 +5,7 @@ description: Nuxt provides a powerful hooking system to expand almost every aspe
# Lifecycle Hooks
:ReadMore{link="/guide/going-further/hooks"}
:ReadMore{link="/docs/guide/going-further/hooks"}
# App Hooks (runtime)

View File

@ -5,7 +5,7 @@ description: Nuxt Kit provides composable utilities to help interacting with Nux
# Kit Utilities
::ReadMore{link="/guide/going-further/kit"}
::ReadMore{link="/docs/guide/going-further/kit"}
::
## Utilities

View File

@ -6,7 +6,7 @@ toc: false
This example defines a new `test` page using `extendPages` within a module.
::ReadMore{link="/guide/going-further/modules"}
::ReadMore{link="/docs/guide/going-further/modules"}
::
::sandbox{repo="nuxt/framework" branch="main" dir="examples/advanced/module-extend-pages" file="pages/index.vue"}

View File

@ -10,7 +10,7 @@ This example shows how to test your Nuxt application.
Learn more about [testing](/docs/guide/going-further/testing).
::
::ReadMore{link="/guide/going-further/testing"}
::ReadMore{link="/docs/guide/going-further/testing"}
::
::sandbox{repo="nuxt/framework" branch="main" dir="examples/advanced/testing" file="app.vue"}