> For AI agents: the complete documentation index is available at https://rspress.rs/llms.txt, the full documentation bundle is available at https://rspress.rs/llms-full.txt.

# NoSSR

:::danger Deprecated

`NoSSR` is deprecated. Use [`BrowserOnly`](https://rspress.rs/ui/runtime-components/browser-only.md) instead.

:::

`NoSSR` is used to skip server-side rendering of its subtree.

## Usage

```mdx title="index.mdx"
import { NoSSR } from '@rspress/core/runtime';

<NoSSR>
  <ThirdPartyWidget />
</NoSSR>
```

## See also

- [`BrowserOnly`](https://rspress.rs/ui/runtime-components/browser-only.md) — render content only in the browser after hydration.
