@@ -9,8 +9,6 @@ import { glob } from 'fast-glob'
9
9
import pLimit from 'p-limit'
10
10
import { satisfies } from 'semver'
11
11
12
- import { FS_BLOBS_MANIFEST } from '../../run/constants.js'
13
- import { type FSBlobsManifest } from '../../run/next.cjs'
14
12
import { encodeBlobKey } from '../../shared/blobkey.js'
15
13
import type {
16
14
CachedFetchValueForMultipleVersions ,
@@ -160,11 +158,6 @@ export const copyPrerenderedContent = async (ctx: PluginContext): Promise<void>
160
158
} )
161
159
: false
162
160
163
- const fsBlobsManifest : FSBlobsManifest = {
164
- fallbackPaths : [ ] ,
165
- outputRoot : ctx . distDir ,
166
- }
167
-
168
161
await Promise . all ( [
169
162
...Object . entries ( manifest . routes ) . map (
170
163
( [ route , meta ] ) : Promise < void > =>
@@ -214,41 +207,15 @@ export const copyPrerenderedContent = async (ctx: PluginContext): Promise<void>
214
207
await writeCacheEntry ( key , value , lastModified , ctx )
215
208
} ) ,
216
209
) ,
217
- ...Object . entries ( manifest . dynamicRoutes ) . map ( async ( [ route , meta ] ) => {
218
- // fallback can be `string | false | null`
219
- // - `string` - when user use pages router with `fallback: true`, and then it's html file path
220
- // - `null` - when user use pages router with `fallback: 'block'` or app router with `export const dynamicParams = true`
221
- // - `false` - when user use pages router with `fallback: false` or app router with `export const dynamicParams = false`
222
- if ( typeof meta . fallback === 'string' ) {
223
- // https://github.com/vercel/next.js/pull/68603 started using route cache to serve fallbacks
224
- // so we have to seed blobs with fallback entries
225
-
226
- // create cache entry for pages router with `fallback: true` case
227
- await limitConcurrentPrerenderContentHandling ( async ( ) => {
228
- // dynamic routes don't have entries for each locale so we have to generate them
229
- // ourselves. If i18n is not used we use empty string as "locale" to be able to use
230
- // same handling wether i18n is used or not
231
- const locales = ctx . buildConfig . i18n ?. locales ?? [ '' ]
210
+ ...ctx . getFallbacks ( manifest ) . map ( async ( route ) => {
211
+ const key = routeToFilePath ( route )
212
+ const value = await buildPagesCacheValue (
213
+ join ( ctx . publishDir , 'server/pages' , key ) ,
214
+ shouldUseEnumKind ,
215
+ true , // there is no corresponding json file for fallback, so we are skipping it for this entry
216
+ )
232
217
233
- const lastModified = Date . now ( )
234
- for ( const locale of locales ) {
235
- const key = routeToFilePath ( posixJoin ( locale , route ) )
236
- const value = await buildPagesCacheValue (
237
- join ( ctx . publishDir , 'server/pages' , key ) ,
238
- shouldUseEnumKind ,
239
- true , // there is no corresponding json file for fallback, so we are skipping it for this entry
240
- )
241
- // Netlify Forms are not support and require a workaround
242
- if ( value . kind === 'PAGE' || value . kind === 'PAGES' || value . kind === 'APP_PAGE' ) {
243
- verifyNetlifyForms ( ctx , value . html )
244
- }
245
-
246
- await writeCacheEntry ( key , value , lastModified , ctx )
247
-
248
- fsBlobsManifest . fallbackPaths . push ( `${ key } .html` )
249
- }
250
- } )
251
- }
218
+ await writeCacheEntry ( key , value , Date . now ( ) , ctx )
252
219
} ) ,
253
220
] )
254
221
@@ -263,10 +230,6 @@ export const copyPrerenderedContent = async (ctx: PluginContext): Promise<void>
263
230
)
264
231
await writeCacheEntry ( key , value , lastModified , ctx )
265
232
}
266
- await writeFile (
267
- join ( ctx . serverHandlerDir , FS_BLOBS_MANIFEST ) ,
268
- JSON . stringify ( fsBlobsManifest ) ,
269
- )
270
233
} catch ( error ) {
271
234
ctx . failBuild ( 'Failed assembling prerendered content for upload' , error )
272
235
}
0 commit comments