Skip to content

Commit

Permalink
Work around bug vercel/next.js#39800
Browse files Browse the repository at this point in the history
  • Loading branch information
zhuhaow committed Aug 24, 2022
1 parent 7831815 commit 8c2155f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test/integration/basic/pages/middleware.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,7 @@ import {NextRequest, NextResponse} from 'next/server';
export function middleware(request: NextRequest) {
return NextResponse.next(request);
}

export const config = {
runtime: 'experimental-edge',
};

0 comments on commit 8c2155f

Please sign in to comment.