Merge remote-tracking branch 'refs/remotes/origin/experimental' into experimental

This commit is contained in:
Henry Li
2026-01-16 14:04:21 +08:00
13 changed files with 1125 additions and 41 deletions

View File

@@ -31,7 +31,7 @@ export async function DELETE(
}
async function handleProxy(request: NextRequest, pathSegments: string[]) {
const targetUrl = `http://localhost:2024/${pathSegments.join("/")}`;
const targetUrl = `http://localhost:8000/${pathSegments.join("/")}`;
// Preserve query parameters
const searchParams = request.nextUrl.searchParams.toString();