Skip to content

Commit 63dad12

Browse files
committed
fix(apps): update cli.angular.dev to point to CLI information page (#2437)
Update to point to the CLI information page instead of the base of the API entries PR Close #2437
1 parent 5509a60 commit 63dad12

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/functions/dns-redirecting/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ export const dnsRedirecting = functions.https.onRequest(
3838
response.redirect(redirectType, 'https://angular.dev/update-guide');
3939
}
4040
if (hostname === 'cli.angular.io') {
41-
response.redirect(redirectType, 'https://angular.dev/cli');
41+
response.redirect(redirectType, 'https://angular.dev/tools/cli');
4242
}
4343
if (hostname === 'cli.angular.dev') {
44-
response.redirect(redirectType, 'https://angular.dev/cli');
44+
response.redirect(redirectType, 'https://angular.dev/tools/cli');
4545
}
4646
if (hostname === 'blog.angular.io') {
4747
response.redirect(redirectType, `https://blog.angular.dev${request.originalUrl}`);

0 commit comments

Comments
 (0)