summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Sarah Rainsberger <5098874+sarah11918@users.noreply.github.com> 2025-04-28 04:56:28 -0300
committerGravatar GitHub <noreply@github.com> 2025-04-28 08:56:28 +0100
commitab98f884f2f8639a8f385cdbc919bc829014f64d (patch)
treede93bedb456859827ecc5bf02a0b4545abe371d5
parent6a2cfd8e208f6bf4cb3d8e197e8cab0888ccbdd6 (diff)
downloadastro-ab98f884f2f8639a8f385cdbc919bc829014f64d.tar.gz
astro-ab98f884f2f8639a8f385cdbc919bc829014f64d.tar.zst
astro-ab98f884f2f8639a8f385cdbc919bc829014f64d.zip
[docs] better text/links in config ref adapter entry (#13698)
-rw-r--r--.changeset/purple-horses-talk.md5
-rw-r--r--packages/astro/src/types/public/config.ts4
2 files changed, 7 insertions, 2 deletions
diff --git a/.changeset/purple-horses-talk.md b/.changeset/purple-horses-talk.md
new file mode 100644
index 000000000..20075d5a2
--- /dev/null
+++ b/.changeset/purple-horses-talk.md
@@ -0,0 +1,5 @@
+---
+'astro': patch
+---
+
+Improves the configuration reference docs for the `adapter` entry with more relevant text and links.
diff --git a/packages/astro/src/types/public/config.ts b/packages/astro/src/types/public/config.ts
index a73a00355..4e7acda3b 100644
--- a/packages/astro/src/types/public/config.ts
+++ b/packages/astro/src/types/public/config.ts
@@ -363,9 +363,9 @@ export interface ViteUserConfig extends OriginalViteUserConfig {
* @see output
* @description
*
- * Deploy to your favorite server, serverless, or edge host with build adapters. Import one of our first-party adapters for [Netlify](https://docs.astro.build/en/guides/deploy/netlify/#adapter-for-ssr), [Vercel](https://docs.astro.build/en/guides/deploy/vercel/#adapter-for-ssr), and more to engage Astro SSR.
+ * Deploy to your favorite server, serverless, or edge host with build adapters. Import one of our first-party adapters ([Cloudflare](/en/guides/integrations-guide/cloudflare/), [Netlify](/en/guides/integrations-guide/netlify/), [Node.js](/en/guides/integrations-guide/node/), [Vercel](/en/guides/integrations-guide/vercel/)) or explore [community adapters](https://astro.build/integrations/2/?search=&categories%5B%5D=adapters) to enable on-demand rendering in your Astro project.
*
- * [See our On-demand Rendering guide](https://docs.astro.build/en/guides/on-demand-rendering/) for more on SSR, and [our deployment guides](https://docs.astro.build/en/guides/deploy/) for a complete list of hosts.
+ * See our [on-demand rendering guide](/en/guides/on-demand-rendering/) for more on Astro's server rendering options.
*
* ```js
* import netlify from '@astrojs/netlify';