Reputation: 537
I'm using next-i18next for multi language website and for all components works well but I dont know how to change the language of html tag in _document.js file?
Upvotes: 1
Views: 2728
Reputation: 2523
Here is my solution.
class MyDocument extends Document {
static async getInitialProps(ctx) {
const initialProps = await Document.getInitialProps(ctx)
const language = ctx.req.language
return { ...initialProps, language }
}
render() {
return (
<Html lang={this.props.language}>
<Head />
<body>
<Main />
<NextScript />
</body>
</Html>
)
}
}
Upvotes: 3