Skip to content

Commit 20f9464

Browse files
committed
refactor: remove debugger
1 parent 0aaa3ac commit 20f9464

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

demos/middleware/middleware.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export async function middleware(req: NextRequest) {
1111
if (pathname.startsWith('/api/hello')) {
1212
// Next 13 request header mutation functionality
1313
const headers = new Headers(req.headers)
14-
debugger;
14+
1515
headers.set('x-hello', 'world')
1616
return NextResponse.next({
1717
request: {

0 commit comments

Comments
 (0)