File tree Expand file tree Collapse file tree 3 files changed +5
-0
lines changed
examples/e2e/experimental Expand file tree Collapse file tree 3 files changed +5
-0
lines changed Original file line number Diff line number Diff line change 11import { expect , test } from "@playwright/test" ;
22
3+ // See https://github.com/opennextjs/opennextjs-cloudflare/issues/617
34test . describe ( "Node Middleware" , ( ) => {
45 test . skip ( "Node middleware should add headers" , async ( { request } ) => {
56 const resp = await request . get ( "/" ) ;
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ const nextConfig: NextConfig = {
1414 experimental : {
1515 ppr : "incremental" ,
1616 // Node middleware is not supported yet in cloudflare
17+ // See https://github.com/opennextjs/opennextjs-cloudflare/issues/617
1718 // nodeMiddleware: true,
1819 dynamicIO : true ,
1920 } ,
Original file line number Diff line number Diff line change 1+ // Node middleware is not supported yet in cloudflare
2+ // See https://github.com/opennextjs/opennextjs-cloudflare/issues/617
3+
14// import crypto from "node:crypto";
25import { type NextRequest , NextResponse } from "next/server" ;
36
You can’t perform that action at this time.
0 commit comments