I have a request to add <META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
on certain pages of the Elm app.
This got me thinking about crawling. Does any of you have more insight into what is the best way to handle this.
Right now, the navigation is done with a custom link that has an onWithOptions
handler that disables the default behavior and generate a routing message that then writes the url using Navigation.newUrl
.
Would adding a port call to JS to update the head
be sufficient OR will this have no effect on the crawlers?
Any kind of insight into this is appreciated.