-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproxy.ts
More file actions
32 lines (27 loc) · 1.01 KB
/
Copy pathproxy.ts
File metadata and controls
32 lines (27 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import { isMarkdownPreferred, rewritePath } from 'fumadocs-core/negotiation'
import { NextRequest, NextResponse } from 'next/server'
import docsContentRoute from '@/constants/DOCS_CONTENT_ROUTE'
import docsRoute from '@/constants/DOCS_ROUTE'
// oxlint-disable-next-line typescript/unbound-method
const { rewrite: rewriteDocs } = rewritePath(
`${docsRoute.path}{/*path}`,
`${docsContentRoute.path}{/*path}/content.md`
)
// oxlint-disable-next-line typescript/unbound-method
const { rewrite: rewriteSuffix } = rewritePath(
`${docsRoute.path}{/*path}.md`,
`${docsContentRoute.path}{/*path}/content.md`
)
export default function proxy(request: NextRequest) {
const result = rewriteSuffix(request.nextUrl.pathname)
if (result) {
return NextResponse.rewrite(new URL(result, request.nextUrl))
}
if (isMarkdownPreferred(request)) {
const result = rewriteDocs(request.nextUrl.pathname)
if (result) {
return NextResponse.rewrite(new URL(result, request.nextUrl))
}
}
return NextResponse.next()
}