docs: note that @nuxt/schema should be used by module authors (#26190)

This commit is contained in:
Volker Rose 2024-03-18 16:17:30 +01:00 committed by GitHub
parent ac54031511
commit 41f6a0a3a0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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`.
::