mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
docs: fix broken paths (#9076)
This commit is contained in:
parent
7dfa2f36c3
commit
fea7717291
@ -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
|
||||
|
||||
|
@ -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"}
|
||||
::
|
||||
|
@ -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`
|
||||
|
@ -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"}
|
||||
::
|
||||
|
@ -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)
|
||||
|
||||
|
@ -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
|
||||
|
@ -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"}
|
||||
|
@ -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"}
|
||||
|
Loading…
Reference in New Issue
Block a user