Skip to content

Commit

Permalink
add llm redirects (#10132)
Browse files Browse the repository at this point in the history
* add llm redirects

* Update middleware.ts

remove extra tab

* [getsentry/action-github-commit] Auto commit

---------

Co-authored-by: getsantry[bot] <66042841+getsantry[bot]@users.noreply.github.com>
  • Loading branch information
2 people authored and a-hariti committed Jun 8, 2024
1 parent 9c1aff5 commit 171c02b
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/middleware.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3097,6 +3097,18 @@ const REDIRECTS: Redirect[] = [
from: '/account/sso/',
to: '/organization/authentication/sso/',
},
{
from: '/product/ai-monitoring/',
to: '/product/llm-monitoring/',
},
{
from: '/product/ai-monitoring/getting-started/',
to: '/product/llm-monitoring/getting-started/',
},
{
from: '/product/ai-monitoring/getting-started/the-dashboard/',
to: '/product/llm-monitoring/getting-started/the-dashboard/',
},
];

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

0 comments on commit 171c02b

Please sign in to comment.