@@ -13,7 +13,10 @@ import {
13
13
normalizeDataUrl ,
14
14
normalizeLocalePath ,
15
15
normalizeTrailingSlash ,
16
+ parseDataUrl ,
16
17
relativizeURL ,
18
+ removeBasePath ,
19
+ stripTrailingSlash ,
17
20
} from './util.ts'
18
21
19
22
export interface FetchEventResult {
@@ -181,12 +184,23 @@ export const buildResponse = async ({
181
184
182
185
if ( isDataReq ) {
183
186
// The rewrite target is a data request, but a middleware rewrite target is always for the page route,
184
- // so we need to tell the server this is a data request. Setting the `x-nextjs-data` header is not enough. 🤷
185
- rewriteUrl . searchParams . set ( '__nextDataReq' , '1' )
186
- }
187
+ // so we need to transform url back to data url
188
+
189
+ const { buildId } = parseDataUrl (
190
+ removeBasePath ( new URL ( request . url ) . pathname , nextConfig ?. basePath ) ,
191
+ )
192
+ const rewriteRoute = removeBasePath ( rewriteUrl . pathname , nextConfig ?. basePath )
187
193
188
- // respect trailing slash rules to prevent 308s
189
- rewriteUrl . pathname = normalizeTrailingSlash ( rewriteUrl . pathname , nextConfig ?. trailingSlash )
194
+ const newPath = addBasePath (
195
+ `/_next/data/${ buildId } ${ rewriteRoute === '/' ? '/index' : stripTrailingSlash ( rewriteRoute ) } .json` ,
196
+ nextConfig ?. basePath ,
197
+ )
198
+
199
+ rewriteUrl . pathname = newPath
200
+ } else {
201
+ // respect trailing slash rules to prevent 308s
202
+ rewriteUrl . pathname = normalizeTrailingSlash ( rewriteUrl . pathname , nextConfig ?. trailingSlash )
203
+ }
190
204
191
205
const target = normalizeLocalizedTarget ( { target : rewriteUrl . toString ( ) , request, nextConfig } )
192
206
if ( target === request . url ) {
0 commit comments