Is it possible to have multiple nested metadata title templates?
Unanswered
Bald Eagle posted this in #help-forum
Bald EagleOP
I want to achieve
Page | NestedLayout | RootLayout
with the following but I am getting Page | NestedLayout
.// Root Layout
export const metadata = {
title: {
template: '%s | RootLayout',
default: 'RootLayout',
},
}
// Nested Layout
export const metadata = {
title: {
template: '%s | NestedLayout',
default: 'NestedLayout',
},
}
// Page
export const metadata = {
title: 'Page',
};