File tree 1 file changed +10
-4
lines changed
packages/next/src/lib/metadata
1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -443,10 +443,7 @@ async function collectMetadata({
443
443
const hasErrorConventionComponent = Boolean (
444
444
errorConvention && tree [ 2 ] [ errorConvention ]
445
445
)
446
- // If it's default.js, ignore the metadata
447
- if ( tree [ 0 ] === DEFAULT_SEGMENT_KEY ) {
448
- return
449
- }
446
+
450
447
if ( errorConvention ) {
451
448
mod = await getComponentTypeModule ( tree , 'layout' )
452
449
modType = errorConvention
@@ -554,6 +551,15 @@ async function resolveMetadataItemsImpl(
554
551
}
555
552
}
556
553
554
+ const pageKey = tree [ 0 ]
555
+
556
+ // If it's default.js, ignore the metadata
557
+ // webpack loader: pageKey of the default.js is DEFAULT_SEGMENT_KEY ('__DEFAULT__')
558
+ // turbopack loader: pageKey of the parallel route @bar is 'page$'
559
+ const isDefaultPage = pageKey === DEFAULT_SEGMENT_KEY || pageKey === 'page$'
560
+ if ( isDefaultPage ) {
561
+ return metadataItems
562
+ }
557
563
await collectMetadata ( {
558
564
tree,
559
565
metadataItems,
You can’t perform that action at this time.
0 commit comments