@@ -266,7 +266,7 @@ export const writeDevEdgeFunction = async ({
266
266
* Writes an edge function that routes RSC data requests to the `.rsc` route
267
267
*/
268
268
269
- export const writeRscDataEdgeFunction = async ( {
269
+ export const writeRscDataEdgeFunction = async ( {
270
270
prerenderManifest,
271
271
appPathRoutesManifest,
272
272
} : {
@@ -347,7 +347,6 @@ export const writeEdgeFunctions = async ({
347
347
netlifyConfig : NetlifyConfig
348
348
routesManifest : RoutesManifest
349
349
} ) => {
350
-
351
350
const nextjsPluginVersion = await writeEdgeFunctionConfiguration ( )
352
351
353
352
const manifest : FunctionManifest = {
@@ -407,7 +406,9 @@ export const writeEdgeFunctions = async ({
407
406
} )
408
407
409
408
manifest . functions . push (
410
- ...matchers . map ( ( matcher ) => middlewareMatcherToEdgeFunctionDefinition ( matcher , functionName , nextjsPluginVersion ) ) ,
409
+ ...matchers . map ( ( matcher ) =>
410
+ middlewareMatcherToEdgeFunctionDefinition ( matcher , functionName , nextjsPluginVersion ) ,
411
+ ) ,
411
412
)
412
413
}
413
414
// Functions (i.e. not middleware, but edge SSR and API routes)
@@ -457,7 +458,7 @@ export const writeEdgeFunctions = async ({
457
458
name : edgeFunctionDefinition . name ,
458
459
pattern : dataRoute ,
459
460
cache : usesAppDir ? 'manual' : undefined ,
460
- generator : `${ nextjsPluginVersion } `
461
+ generator : `${ nextjsPluginVersion } ` ,
461
462
} )
462
463
}
463
464
}
@@ -483,7 +484,7 @@ export const writeEdgeFunctions = async ({
483
484
function : 'ipx' ,
484
485
name : 'next/image handler' ,
485
486
path : '/_next/image*' ,
486
- generator : `${ nextjsPluginVersion } `
487
+ generator : `${ nextjsPluginVersion } ` ,
487
488
} )
488
489
} else {
489
490
console . log (
0 commit comments