Skip to content

Is there a way to set the html <title> tag for dynamic routes? #2285

Closed Locked Answered by brianmercer
brianmercer asked this question in Q&A
Discussion options

You must be logged in to vote

OK, this seems to work after adding a title param.

// config.js

async transformPageData(pageData, { siteConfig }) {
    if (!pageData.title && pageData.params.title) {
      pageData.title = pageData.params.title
    }
},

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by brianmercer
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
1 participant