From 6dfc7648005355c0a209156b8e25279db08625bb Mon Sep 17 00:00:00 2001 From: Joey Perrott Date: Mon, 11 Nov 2024 08:08:36 -0700 Subject: [PATCH] fix(apps): update cli.angular.dev to point to CLI information page Update to point to the CLI information page instead of the base of the API entries --- apps/functions/dns-redirecting/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/functions/dns-redirecting/index.ts b/apps/functions/dns-redirecting/index.ts index a215e729a..a65ce1aa9 100644 --- a/apps/functions/dns-redirecting/index.ts +++ b/apps/functions/dns-redirecting/index.ts @@ -38,10 +38,10 @@ export const dnsRedirecting = functions.https.onRequest( response.redirect(redirectType, 'https://angular.dev/update-guide'); } if (hostname === 'cli.angular.io') { - response.redirect(redirectType, 'https://angular.dev/cli'); + response.redirect(redirectType, 'https://angular.dev/tools/cli'); } if (hostname === 'cli.angular.dev') { - response.redirect(redirectType, 'https://angular.dev/cli'); + response.redirect(redirectType, 'https://angular.dev/tools/cli'); } if (hostname === 'blog.angular.io') { response.redirect(redirectType, `https://blog.angular.dev${request.originalUrl}`);