Next.js Discord

Discord Forum

Is it possible to have multiple nested metadata title templates?

Unanswered
Bald Eagle posted this in #help-forum
Open in Discord
Avatar
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',
};

0 Replies