From 88628a4f9e95173800cbd791468b4dab7797e2b2 Mon Sep 17 00:00:00 2001 From: Markus Krogemann Date: Wed, 7 Feb 2024 13:45:22 +0100 Subject: [PATCH] Fix small typo in astro.ts (#10008) --- packages/astro/src/@types/astro.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/astro/src/@types/astro.ts b/packages/astro/src/@types/astro.ts index 3bd38b01a4f8..c07dd0f65399 100644 --- a/packages/astro/src/@types/astro.ts +++ b/packages/astro/src/@types/astro.ts @@ -553,7 +553,7 @@ export interface AstroUserConfig { * * Specifies the output target for builds. * - * - `'static'` - Building a static site to be deploy to any static host. + * - `'static'` - Building a static site to be deployed to any static host. * - `'server'` - Building an app to be deployed to a host supporting SSR (server-side rendering). * - `'hybrid'` - Building a static site with a few server-side rendered pages. *