Skip to content

Commit 551b32d

Browse files
authored
[test] Fix external rewrite target URL origin (#86863)
Switching to the assigned custom domain because the project has now Standard Protection enabled, which requires authentication for all other deployments. [x-ref](https://github.com/vercel/next.js/actions/runs/19954917697/job/57223360201)
1 parent 45f0c79 commit 551b32d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/e2e/skip-trailing-slash-redirect/app/middleware.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ export default function handler(req) {
3535
}
3636

3737
console.log(
38-
`rewriting to https://middleware-external-rewrite-target-epsp8idgo-uncurated-tests.vercel.app${pathname}`
38+
`rewriting to https://middleware-external-rewrite-target.vercel.app${pathname}`
3939
)
4040

4141
return NextResponse.rewrite(
42-
`https://middleware-external-rewrite-target-epsp8idgo-uncurated-tests.vercel.app${pathname}`
42+
`https://middleware-external-rewrite-target.vercel.app${pathname}`
4343
)
4444
}
4545

0 commit comments

Comments
 (0)