Skip to content

Commit 13b35bb

Browse files
committed
fix turbopack
1 parent c071f53 commit 13b35bb

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

packages/next/src/lib/metadata/resolve-metadata.ts

+10-4
Original file line numberDiff line numberDiff line change
@@ -443,10 +443,7 @@ async function collectMetadata({
443443
const hasErrorConventionComponent = Boolean(
444444
errorConvention && tree[2][errorConvention]
445445
)
446-
// If it's default.js, ignore the metadata
447-
if (tree[0] === DEFAULT_SEGMENT_KEY) {
448-
return
449-
}
446+
450447
if (errorConvention) {
451448
mod = await getComponentTypeModule(tree, 'layout')
452449
modType = errorConvention
@@ -554,6 +551,15 @@ async function resolveMetadataItemsImpl(
554551
}
555552
}
556553

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+
}
557563
await collectMetadata({
558564
tree,
559565
metadataItems,

0 commit comments

Comments
 (0)