diff --git a/docs/2.guide/3.going-further/3.modules.md b/docs/2.guide/3.going-further/3.modules.md index 9b23d09590eb..5f45091d2180 100644 --- a/docs/2.guide/3.going-further/3.modules.md +++ b/docs/2.guide/3.going-further/3.modules.md @@ -210,7 +210,7 @@ Learn more about asset injection in [the recipes section](#recipes). ::callout{color="amber" icon="i-ph-warning-duotone"} Published modules cannot leverage auto-imports for assets within their runtime directory. Instead, they have to import them explicitly from `#imports` or alike. -Indeed, auto-imports are not enabled for files within `node_modules` (the location where a published module will eventually live) for performance reasons. That's why the module starter [deliberately disables them](https://github.com/nuxt/starter/blob/module/.nuxtrc#L1) while developing a module. +Indeed, auto-imports are not enabled for files within `node_modules` (the location where a published module will eventually live) for performance reasons. If you are using the module starter, auto-imports will not be enabled in your playground either. ::