From 41f6a0a3a00ba69a1bad0b243b9c198ecc5fab63 Mon Sep 17 00:00:00 2001 From: Volker Rose Date: Mon, 18 Mar 2024 16:17:30 +0100 Subject: [PATCH] docs: note that `@nuxt/schema` should be used by module authors (#26190) --- docs/2.guide/3.going-further/10.runtime-config.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/2.guide/3.going-further/10.runtime-config.md b/docs/2.guide/3.going-further/10.runtime-config.md index f4ca19cd94..192f73df94 100644 --- a/docs/2.guide/3.going-further/10.runtime-config.md +++ b/docs/2.guide/3.going-further/10.runtime-config.md @@ -164,3 +164,7 @@ declare module 'nuxt/schema' { // It is always important to ensure you import/export something when augmenting a type export {} ``` + +::note +`nuxt/schema` is provided as a convenience for end-users to access the version of the schema used by Nuxt in their project. Module authors should instead augment `@nuxt/schema`. +::