diff --git a/apps/functions/dns-redirecting/index.ts b/apps/functions/dns-redirecting/index.ts index 5057f1cd5..fc143db04 100644 --- a/apps/functions/dns-redirecting/index.ts +++ b/apps/functions/dns-redirecting/index.ts @@ -28,6 +28,9 @@ export const dnsRedirecting = functions } } + if (hostname === 'code-of-conduct.angular.io') { + response.redirect(redirectType, 'https://code-of-conduct.angular.dev'); + } if (hostname === 'update.angular.dev') { response.redirect(redirectType, 'https://angular.dev/update-guide'); }