summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Elian ☕️ <elianvancutsem@gmail.com> 2022-09-07 22:05:13 +0200
committerGravatar GitHub <noreply@github.com> 2022-09-07 17:05:13 -0300
commit808cfcdb1c22563223ffbcf98d3f6fbcc1c4e5d1 (patch)
tree76de4d5ce7495785718a459db59b0617cf3655ae
parentd31e72c3ba8270d1e8d33c533502b3c4c6390a15 (diff)
downloadastro-808cfcdb1c22563223ffbcf98d3f6fbcc1c4e5d1.tar.gz
astro-808cfcdb1c22563223ffbcf98d3f6fbcc1c4e5d1.tar.zst
astro-808cfcdb1c22563223ffbcf98d3f6fbcc1c4e5d1.zip
Docs Typo fixes (#4664)
-rw-r--r--packages/integrations/vercel/README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/integrations/vercel/README.md b/packages/integrations/vercel/README.md
index 72c5ba2d0..e9f696e9b 100644
--- a/packages/integrations/vercel/README.md
+++ b/packages/integrations/vercel/README.md
@@ -18,7 +18,7 @@ If you're using Astro as a static site builder — its behavior out of the box
If you wish to [use server-side rendering (SSR)](https://docs.astro.build/en/guides/server-side-rendering/), Astro requires an adapter that matches your deployment runtime.
-[Vercel](https://www.netlify.com/) is a deployment platform that allows you to host your site by connecting directly to your GitHub repository. This adapter enhances the Astro build process to prepare your project for deployment through Vercel.
+[Vercel](https://www.vercel.com/) is a deployment platform that allows you to host your site by connecting directly to your GitHub repository. This adapter enhances the Astro build process to prepare your project for deployment through Vercel.
## Installation
@@ -40,7 +40,7 @@ If you prefer to install the adapter manually instead, complete the following tw
```js title="astro.config.mjs" ins={2, 5-6}
import { defineConfig } from 'astro/config';
- import netlify from '@astrojs/vercel/serverless';
+ import vercel from '@astrojs/vercel/serverless';
export default defineConfig({
output: 'server',