From 8f7815e96e116ec19b96cfe0ea0bda6fee308d97 Mon Sep 17 00:00:00 2001 From: John Tanzer <82201261+moshetanzer@users.noreply.github.com> Date: Thu, 11 Jul 2024 10:07:30 +0200 Subject: [PATCH] docs: clarify navigateTo is not for nitro routes (#28092) --- docs/3.api/2.composables/use-nuxt-app.md | 2 +- docs/3.api/3.utils/navigate-to.md | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/docs/3.api/2.composables/use-nuxt-app.md b/docs/3.api/2.composables/use-nuxt-app.md index 1b0bf7886f..5ab9289638 100644 --- a/docs/3.api/2.composables/use-nuxt-app.md +++ b/docs/3.api/2.composables/use-nuxt-app.md @@ -8,7 +8,7 @@ links: size: xs --- -`useNuxtApp` is a built-in composable that provides a way to access shared runtime context of Nuxt, also known as the [Nuxt context](/docs/guide/going-further/nuxt-app#the-nuxt-context), which is available on both client and server side. It helps you access the Vue app instance, runtime hooks, runtime config variables and internal states, such as `ssrContext` and `payload`. +`useNuxtApp` is a built-in composable that provides a way to access shared runtime context of Nuxt, also known as the [Nuxt context](/docs/guide/going-further/nuxt-app#the-nuxt-context), which is available on both client and server side (but not within Nitro routes). It helps you access the Vue app instance, runtime hooks, runtime config variables and internal states, such as `ssrContext` and `payload`. ```vue [app.vue]