Skip to content

Commit 0efdd31

Browse files
committed
Add middleware file to nextjs-13 e2e tests to demonstrate failure
1 parent a991c3f commit 0efdd31

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import { NextResponse } from 'next/server';
2+
3+
export function middleware() {
4+
// Basic middleware to ensure that the build works with edge runtime
5+
return NextResponse.next();
6+
}

0 commit comments

Comments
 (0)