File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
packages/next/src/server/lib Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -367,17 +367,20 @@ export async function startServer(
367367 // Only load env and config in dev to for logging purposes
368368 let envInfo : string [ ] | undefined
369369 let experimentalFeatures : ConfiguredExperimentalFeature [ ] | undefined
370+ let cacheComponents : boolean | undefined
370371 try {
371372 if ( isDev ) {
372373 const startServerInfo = await getStartServerInfo ( { dir, dev : isDev } )
373374 envInfo = startServerInfo . envInfo
375+ cacheComponents = startServerInfo . cacheComponents
374376 experimentalFeatures = startServerInfo . experimentalFeatures
375377 }
376378 logStartInfo ( {
377379 networkUrl,
378380 appUrl,
379381 envInfo,
380382 experimentalFeatures,
383+ cacheComponents,
381384 logBundler : isDev ,
382385 } )
383386
You can’t perform that action at this time.
0 commit comments