diff --git a/docs/content/1.docs/2.guide/2.directory-structure/1.components.md b/docs/content/1.docs/2.guide/2.directory-structure/1.components.md index 88330c37a502..59aeef920a39 100644 --- a/docs/content/1.docs/2.guide/2.directory-structure/1.components.md +++ b/docs/content/1.docs/2.guide/2.directory-structure/1.components.md @@ -245,8 +245,6 @@ This feature only works with Nuxt auto-imports and `#components` imports. Explic ### Standalone server components -::StabilityEdge - Standalone server components will always be rendered on the server. When their props update, this will result in a network request that will update the rendered HTML in-place. Server components are currently experimental and in order to use them, you need to enable the 'component islands' feature in your nuxt.config: @@ -278,8 +276,6 @@ Now you can register server-only components with the `.server` suffix and use th ``` -:: - ### Paired with a `.client` component In this case, the `.server` + `.client` components are two 'halves' of a component and can be used in advanced use cases for separate implementations of a component on server and client side.