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 1
1
import { expect , test } from "@playwright/test" ;
2
2
3
+ // See https://github.com/opennextjs/opennextjs-cloudflare/issues/617
3
4
test . describe ( "Node Middleware" , ( ) => {
4
5
test . skip ( "Node middleware should add headers" , async ( { request } ) => {
5
6
const resp = await request . get ( "/" ) ;
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ const nextConfig: NextConfig = {
14
14
experimental : {
15
15
ppr : "incremental" ,
16
16
// Node middleware is not supported yet in cloudflare
17
+ // See https://github.com/opennextjs/opennextjs-cloudflare/issues/617
17
18
// nodeMiddleware: true,
18
19
dynamicIO : true ,
19
20
} ,
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
+
1
4
// import crypto from "node:crypto";
2
5
import { type NextRequest , NextResponse } from "next/server" ;
3
6
You can’t perform that action at this time.
0 commit comments