Skip to content

Commit

Permalink
add redirects
Browse files Browse the repository at this point in the history
  • Loading branch information
vivianyentran committed Jun 18, 2024
1 parent 55ed52c commit 1938584
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/middleware.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3237,6 +3237,22 @@ const REDIRECTS: Redirect[] = [
from: '/product/performance/queue-monitoring/queues-page/',
to: '/product/insights/queue-monitoring/queues-page/',
},
{
from: '/product/explore/session-replay/protecting-user-privacy/',
to: '/security-legal-pii/scrubbing/protecting-user-privacy/',
},
{
from: '/account/choose-your-data-center/',
to: '/organization/data-storage-location/',
},
{
from: '/account/early-adopter/',
to: '/organization/early-adopter-features/',
},
{
from: '/account/quotas/spike-protection/',
to: '/pricing/quotas/spike-protection/',
},
];

const redirectMap = new Map(REDIRECTS.map(r => [r.from as string, r.to]));

0 comments on commit 1938584

Please sign in to comment.