From 96a6697b389b6625eaf4dc0f47fd83e1bc4d338d Mon Sep 17 00:00:00 2001 From: Arsh <69170106+lilnasy@users.noreply.github.com> Date: Tue, 5 Dec 2023 03:54:21 +0530 Subject: [PATCH] Apply suggestions from code review --- packages/astro/src/core/routing/manifest/create.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/astro/src/core/routing/manifest/create.ts b/packages/astro/src/core/routing/manifest/create.ts index 7e5d530823115..720a2deaac42b 100644 --- a/packages/astro/src/core/routing/manifest/create.ts +++ b/packages/astro/src/core/routing/manifest/create.ts @@ -460,7 +460,7 @@ export function createRouteManifest( destination = to.destination } if (destination.startsWith("http")) { - return logger.error('redirects', `Redirecting to an external URLs is not supported: ${from} -> ${to}`); + return logger.error('redirects', `Redirecting to an external URL is not supported: ${from} -> ${to}`); } }