File tree 2 files changed +10
-6
lines changed
2 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -126,8 +126,14 @@ export const buildResponse = async ({
126
126
const relativeUrl = relativizeURL ( rewrite , request . url )
127
127
const originalPath = new URL ( request . url , `http://n` ) . pathname
128
128
129
+ if ( isDataReq ) {
130
+ // Data requests might be rewritten to an external URL
131
+ // This header tells the client router the redirect target, and if it's external then it will do a full navigation
132
+
133
+ res . headers . set ( 'x-nextjs-rewrite' , relativeUrl )
134
+ }
135
+
129
136
if ( rewriteUrl . origin !== baseUrl . origin ) {
130
- // Netlify Edge Functions don't support proxying to external domains, but Next middleware does
131
137
logger . withFields ( { rewrite_url : rewrite } ) . debug ( 'Rewriting to external url' )
132
138
let proxyRequest : Request
133
139
@@ -151,12 +157,9 @@ export const buildResponse = async ({
151
157
}
152
158
return addMiddlewareHeaders ( fetch ( proxyRequest ) , res )
153
159
} else if ( isDataReq ) {
154
- // Data requests might be rewritten to an external URL
155
- // This header tells the client router the redirect target, and if it's external then it will do a full navigation
156
- res . headers . set ( 'x-nextjs-rewrite' , relativeUrl )
157
160
rewriteUrl . pathname = rewriteDataPath ( {
158
161
dataUrl : originalPath ,
159
- newRoute : relativeUrl ,
162
+ newRoute : rewriteUrl . pathname ,
160
163
basePath : nextConfig ?. basePath ,
161
164
} )
162
165
}
Original file line number Diff line number Diff line change 152
152
},
153
153
"test/e2e/app-dir/actions/app-action.test.ts" : {
154
154
"flakey" : [
155
- " app-dir action handling should log a warning when a server action is not found but an id is provided"
155
+ " app-dir action handling should log a warning when a server action is not found but an id is provided" ,
156
+ " app-dir action handling should work with interception routes"
156
157
]
157
158
}
158
159
},
You can’t perform that action at this time.
0 commit comments