Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Steps component to server-side-rendering.mdx #8066

Merged
merged 1 commit into from
May 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/content/docs/en/guides/server-side-rendering.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ title: On-demand Rendering Adapters
i18nReady: true
---
import PackageManagerTabs from '~/components/tabs/PackageManagerTabs.astro';
import { Steps } from '@astrojs/starlight/components';
import RecipeLinks from '~/components/RecipeLinks.astro';
import IntegrationsNav from '~/components/IntegrationsNav.astro';

Expand Down Expand Up @@ -76,6 +77,7 @@ You can also add an adapter manually by installing the package and updating `ast

For example, to install the Vercel adapter manually:

<Steps>
1. Install the adapter to your project dependencies using your preferred package manager:

<PackageManagerTabs>
Expand Down Expand Up @@ -110,6 +112,7 @@ For example, to install the Vercel adapter manually:
```

Note that different adapters may also have different configuration settings. Read each adapter's documentation, and apply any necessary config options to your chosen adapter in `astro.config.mjs`
</Steps>

### Configure `server` or `hybrid`

Expand Down