From 3ded2e35ad64c3342c4e3e01f22e2317f1d9a86e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Chopin?= Date: Mon, 14 Mar 2022 17:01:20 +0100 Subject: [PATCH] docs(concepts): small improvement regarding auto import on server (#3653) * docs: small improvement regarding auto import on server * Update 4.auto-imports.md --- docs/content/2.concepts/4.auto-imports.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/content/2.concepts/4.auto-imports.md b/docs/content/2.concepts/4.auto-imports.md index a443c7cb02..c171372fa8 100644 --- a/docs/content/2.concepts/4.auto-imports.md +++ b/docs/content/2.concepts/4.auto-imports.md @@ -1,6 +1,6 @@ # Auto imports -Nuxt auto-imports helper functions, composables and Vue APIs to use across your application without explicitly importing them. Based on the directory structure, every Nuxt application can also use auto-imports for its own components, composables and plugins. These functions can be used in components, composables or plugins. However, auto imports don't currently work within the server scope. They just work within the Vue portion of your app. +Nuxt auto-imports helper functions, composables and Vue APIs to use across your application without explicitly importing them. Based on the directory structure, every Nuxt application can also use auto-imports for its own components, composables and plugins. These functions can be used in components, composables or plugins. Contrary to a classic global declaration, Nuxt preserves typings and IDEs completions and hints, and only includes what is actually used in your production code. @@ -12,6 +12,10 @@ Contrary to a classic global declaration, Nuxt preserves typings and IDEs comple 🚧 We are working on a proper API reference that will include every Nuxt auto-imports. For now, you can find a reference on the framework repository: [github.com/nuxt/framework/blob/main/packages/nuxt3/src/auto-imports/imports.ts](https://github.com/nuxt/framework/blob/main/packages/nuxt3/src/auto-imports/imports.ts) :: +::alert{type=warning} +Auto imports don't currently work within the [server directory](/docs/directory-structure/server). +:: + ## Nuxt auto-imports Nuxt auto-imports functions and composables to perform [data fetching](/docs/usage/data-fetching), get access to the [app context](/docs/usage/nuxt-app) and [runtime config](/docs/usage/runtime-config), manage [state](/docs/usage/state) or define components and plugins.