diff --git a/docs/content/1.docs/1.getting-started/3.configuration.md b/docs/content/1.docs/1.getting-started/3.configuration.md index 65947adc058c..dddf61fcd682 100644 --- a/docs/content/1.docs/1.getting-started/3.configuration.md +++ b/docs/content/1.docs/1.getting-started/3.configuration.md @@ -65,7 +65,7 @@ const runtimeConfig = useRuntimeConfig() ``` -:ReadMore{link="/guide/going-further/runtime-config"} +:ReadMore{link="/docs/guide/going-further/runtime-config"} ## App Configuration diff --git a/docs/content/1.docs/2.guide/1.concepts/5.modules.md b/docs/content/1.docs/2.guide/1.concepts/5.modules.md index 5fd678dc2250..4b56962a208f 100644 --- a/docs/content/1.docs/2.guide/1.concepts/5.modules.md +++ b/docs/content/1.docs/2.guide/1.concepts/5.modules.md @@ -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"} :: diff --git a/docs/content/1.docs/3.api/1.composables/use-fetch.md b/docs/content/1.docs/3.api/1.composables/use-fetch.md index 64a554503e3a..e3c6039d6d29 100644 --- a/docs/content/1.docs/3.api/1.composables/use-fetch.md +++ b/docs/content/1.docs/3.api/1.composables/use-fetch.md @@ -41,7 +41,7 @@ type AsyncData = { ## 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` diff --git a/docs/content/1.docs/3.api/1.composables/use-runtime-config.md b/docs/content/1.docs/3.api/1.composables/use-runtime-config.md index 3007bcfdf771..34cfb4c19e45 100644 --- a/docs/content/1.docs/3.api/1.composables/use-runtime-config.md +++ b/docs/content/1.docs/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/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"} :: diff --git a/docs/content/1.docs/3.api/4.advanced/1.hooks.md b/docs/content/1.docs/3.api/4.advanced/1.hooks.md index 02c73d2b6ae8..e5d961218692 100644 --- a/docs/content/1.docs/3.api/4.advanced/1.hooks.md +++ b/docs/content/1.docs/3.api/4.advanced/1.hooks.md @@ -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) diff --git a/docs/content/1.docs/3.api/4.advanced/2.kit.md b/docs/content/1.docs/3.api/4.advanced/2.kit.md index 5e4d79d473b3..4c4cfaaeff96 100644 --- a/docs/content/1.docs/3.api/4.advanced/2.kit.md +++ b/docs/content/1.docs/3.api/4.advanced/2.kit.md @@ -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 diff --git a/docs/content/1.docs/4.examples/6.advanced/module-extend-pages.md b/docs/content/1.docs/4.examples/6.advanced/module-extend-pages.md index a36fb41b4ed5..3d445d759dbc 100644 --- a/docs/content/1.docs/4.examples/6.advanced/module-extend-pages.md +++ b/docs/content/1.docs/4.examples/6.advanced/module-extend-pages.md @@ -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"} diff --git a/docs/content/1.docs/4.examples/6.advanced/testing.md b/docs/content/1.docs/4.examples/6.advanced/testing.md index 163ca9be9cc5..b37f76b2a19f 100644 --- a/docs/content/1.docs/4.examples/6.advanced/testing.md +++ b/docs/content/1.docs/4.examples/6.advanced/testing.md @@ -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"}