We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ed13f4 commit c5c42d9Copy full SHA for c5c42d9
apps/functions/dns-redirecting/index.ts
@@ -28,6 +28,9 @@ export const dnsRedirecting = functions.https.onRequest(
28
}
29
30
31
+ if (hostname === 'code-of-conduct.angular.io') {
32
+ response.redirect(redirectType, 'https://code-of-conduct.angular.dev');
33
+ }
34
if (hostname === 'update.angular.dev') {
35
response.redirect(redirectType, 'https://angular.dev/update-guide');
36
0 commit comments