docs: serve markdown to agents (#13915)

This commit is contained in:
Shahed Nasser
2025-10-30 17:59:22 +02:00
committed by GitHub
parent 66bbe39a8e
commit b1b6960147
11 changed files with 173 additions and 75 deletions
-15
View File
@@ -1,15 +0,0 @@
import { NextResponse } from "next/server"
import type { NextRequest } from "next/server"
export function middleware(request: NextRequest) {
return NextResponse.rewrite(
new URL(
`${request.nextUrl.basePath}/md-content${request.nextUrl.pathname.replace("/index.html.md", "")}`,
request.url
)
)
}
export const config = {
matcher: "/:path*/index.html.md",
}
+32
View File
@@ -152,6 +152,38 @@ const nextConfig = {
permanent: true,
},
],
rewrites: async () => {
return {
beforeFiles: [
{
source: "/:path*/index.html.md",
destination: "/md-content/:path*",
},
{
source: "/:path*",
has: [
{
type: "header",
key: "accept",
value: "text/markdown",
},
],
destination: "/md-content/:path*",
},
{
source: "/:path*",
destination: "/md-content/:path*",
has: [
{
type: "header",
key: "accept",
value: "text/plain",
},
],
},
],
}
},
}
const withBundleAnalyzer = bundleAnalyzer({