-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(nosecone-next): Avoid overriding original headers (#2284)
I found this problem with my implementation while trying to integrate `@nosecone/next` into our application. When using `x-middleware-override-headers` is set, Next.js removes all other headers, which meant that the original Request headers were removed. I also added the adapter to the bot example to make sure the original headers still exist.
- Loading branch information
1 parent
8b19f65
commit 3fcd8b1
Showing
3 changed files
with
21 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import { createMiddleware } from "@nosecone/next"; | ||
|
||
export const config = { | ||
// matcher tells Next.js which routes to run the middleware on | ||
matcher: ["/(.*)"], | ||
}; | ||
|
||
export default createMiddleware(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters