Skip to content

Commit 65d65d2

Browse files
committed
Added redirects
1 parent b3ef168 commit 65d65d2

File tree

1 file changed

+141
-0
lines changed

1 file changed

+141
-0
lines changed

src/middleware.ts

Lines changed: 141 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3408,6 +3408,10 @@ const DEVELOPER_DOCS_REDIRECTS: Redirect[] = [
34083408
from: '/analytics/',
34093409
to: '/development/analytics/',
34103410
},
3411+
{
3412+
from: '/architecture/',
3413+
to: '/application-architecture/',
3414+
},
34113415
{
34123416
from: '/sentry-vs-getsentry/',
34133417
to: '/application/sentry-vs-getsentry/',
@@ -3520,6 +3524,143 @@ const DEVELOPER_DOCS_REDIRECTS: Redirect[] = [
35203524
from: '/sdk/distributed-tracing/',
35213525
to: '/sdk/telemetry/traces/distributed-tracing/',
35223526
},
3527+
{
3528+
from: '/development/',
3529+
to: '/development-infrastructure/',
3530+
},
3531+
{
3532+
from: '/development/commit-messages/',
3533+
to: '/engineering-practices/commit-messages/',
3534+
},
3535+
{
3536+
from: '/development/code-review/',
3537+
to: '/engineering-practices/code-review/',
3538+
},
3539+
{
3540+
from: '/development/documentation/',
3541+
to: '/engineering-practices/documentation/',
3542+
},
3543+
{
3544+
from: '/development/rust/',
3545+
to: '/engineering-practices/rust/',
3546+
},
3547+
{
3548+
from: '/application/',
3549+
to: '/application-architecture/',
3550+
},
3551+
{
3552+
from: '/application/control-silo/',
3553+
to: '/application-architecture/multi-region-deployment/control-silo/',
3554+
},
3555+
{
3556+
from: '/application/cross-region-replication/',
3557+
to: '/application-architecture/multi-region-deployment/cross-region-replication/',
3558+
},
3559+
{
3560+
from: '/application/cross-region-rpc/',
3561+
to: '/application-architecture/multi-region-deployment/cross-region-rpc/',
3562+
},
3563+
{
3564+
from: '/frontend/development-server/',
3565+
to: '/developement-infrastructure/frontend-development-server/',
3566+
},
3567+
{
3568+
from: '/backend/',
3569+
to: '/api-server/',
3570+
},
3571+
{
3572+
from: '/backend/api/',
3573+
to: '/api-server/api/',
3574+
},
3575+
{
3576+
from: '/backend/development-server/',
3577+
to: '/development-infrastructure/backend-development-server/',
3578+
},
3579+
{
3580+
from: '/backend/python-dependencies/',
3581+
to: '/development-infrastructure/python-dependencies/',
3582+
},
3583+
{
3584+
from: '/backend/database-migrations/',
3585+
to: '/api-server/application-domains/database-migrations/',
3586+
},
3587+
3588+
{
3589+
from: '/backend/feature-flags/',
3590+
to: '/api-server/application-domains/feature-flags/',
3591+
},
3592+
{
3593+
from: '/backend/options/',
3594+
to: '/api-server/application-domains/options/',
3595+
},
3596+
{
3597+
from: '/backend/transaction-clustering/',
3598+
to: '/api-server/application-domains/transaction-clustering/',
3599+
},
3600+
{
3601+
from: '/backend/grouping/',
3602+
to: '/api-server/application-domains/grouping/',
3603+
},
3604+
{
3605+
from: '/backend/outboxes/',
3606+
to: '/api-server/application-domains/outboxes/',
3607+
},
3608+
{
3609+
from: '/backend/issue-platform/',
3610+
to: '/api-server/issue-platform/',
3611+
},
3612+
{
3613+
from: '/backend/issue-platform-detectors/',
3614+
to: '/api-server/issue-platform/writing-detectors/',
3615+
},
3616+
{
3617+
from: '/backend/queue/',
3618+
to: '/api-server/application-domains/asynchronous-workers/',
3619+
},
3620+
{
3621+
from: '/backend/email/',
3622+
to: '/api-server/application-domains/email/',
3623+
},
3624+
{
3625+
from: '/backend/kafka/',
3626+
to: '/api-server/application-domains/kafka/',
3627+
},
3628+
{
3629+
from: '/backend/metrics/',
3630+
to: '/api-server/application-domains/metrics/',
3631+
},
3632+
{
3633+
from: '/backend/nodestore/',
3634+
to: '/api-server/application-domains/nodestore/',
3635+
},
3636+
{
3637+
from: '/backend/digests/',
3638+
to: '/api-server/application-domains/digests/',
3639+
},
3640+
{
3641+
from: '/backend/quotas/',
3642+
to: '/api-server/application-domains/quotas/',
3643+
},
3644+
{
3645+
from: '/backend/tsdb/',
3646+
to: '/api-server/application-domains/tsdb/',
3647+
},
3648+
{
3649+
from: '/backend/pii/',
3650+
to: '/api-server/application-domains/pii/',
3651+
},
3652+
{
3653+
from: '/backend/buffers/',
3654+
to: '/api-server/application-domains/buffers/',
3655+
},
3656+
{
3657+
from: '/backend/translations/',
3658+
to: '/api-server/application-domains/translations/',
3659+
},
3660+
{
3661+
from: '/backend/ab-testing/',
3662+
to: '/api-server/application-domains/ab-testing/',
3663+
},
35233664
];
35243665

35253666
const redirectMap = new Map(

0 commit comments

Comments
 (0)