File tree 1 file changed +1
-1
lines changed
1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,6 @@ const fetchBeforeNextPatchedIt = globalThis.fetch
16
16
export async function getMockedRequestHandlers ( ...args : Parameters < typeof getRequestHandlers > ) {
17
17
const tracer = trace . getTracer ( 'Next.js Runtime' )
18
18
return tracer . startActiveSpan ( 'mocked request handler' , async ( span ) => {
19
- const store = getDeployStore ( { fetch : fetchBeforeNextPatchedIt } )
20
19
const ofs = { ...fs }
21
20
22
21
const { encodeBlobKey } = await import ( '../shared/blobkey.js' )
@@ -30,6 +29,7 @@ export async function getMockedRequestHandlers(...args: Parameters<typeof getReq
30
29
} catch ( error ) {
31
30
// only try to get .html files from the blob store
32
31
if ( typeof path === 'string' && path . endsWith ( '.html' ) ) {
32
+ const store = getDeployStore ( { fetch : fetchBeforeNextPatchedIt } )
33
33
const relPath = relative ( resolve ( '.next/server/pages' ) , path )
34
34
const file = await store . get ( await encodeBlobKey ( relPath ) )
35
35
if ( file !== null ) {
You can’t perform that action at this time.
0 commit comments