Hello i try google stops to ask for translate in Nuxt 2 (SSR).
I add this to the nuxt config.
head: {
htmlAttrs: {
lang: 'es',
class: ['notranslate'],
translate: 'no',
},
meta: [
{ charset: 'utf-8' },
{ name: 'google', content: 'notranslate' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{ hid: 'description', name: 'description', content: '' }
],
bodyAttrs: {
class: ['notranslate'],
},
}
But Nuxt only renders translate: no on the html (no class, no meta google). And this doesn't stops Google translate. Anyone knows how can I render this tags to the html?
Render the tags and atributes in the html.