arrow_backBACK TO DRILLS
Blue BeltnextjsPREMIUM
The Template That Got Overridden
The rendered <title> for the homepage shows just "Home" instead of "Home | MyApp". Why doesn't the layout's template apply?
REACT_MODULE // 0x42
// app/layout.tsx
export const metadata = {
title: {
template: '%s | MyApp',
default: 'MyApp',
},
};
// app/page.tsx
export const metadata = {
title: 'Home',
};