Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Add check for x-invoke-path in edge route module wrapper to address https://github.com/vercel/next.js/issues/48295 #54795

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions packages/next/src/server/web/edge-route-module-wrapper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,13 @@ export class EdgeRouteModuleWrapper {
// slashes for matching.
let pathname = removeTrailingSlash(new URL(request.url).pathname)

// Check if middleware rewrite exists to prevent this issue: https://github.com/vercel/next.js/issues/48295
const invokePath = request.headers.get('x-invoke-path')

if (invokePath) {
pathname = invokePath
}

// Get the base path and strip it from the pathname if it exists.
const { basePath } = request.nextUrl
if (basePath) {
Expand Down