13 lines
306 B
JavaScript
13 lines
306 B
JavaScript
|
/**
|
||
|
* Implement Gatsby's SSR (Server Side Rendering) APIs in this file.
|
||
|
*
|
||
|
* See: https://www.gatsbyjs.com/docs/reference/config-files/gatsby-ssr/
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* @type {import('gatsby').GatsbySSR['onRenderBody']}
|
||
|
*/
|
||
|
exports.onRenderBody = ({ setHtmlAttributes }) => {
|
||
|
setHtmlAttributes({ lang: `en` })
|
||
|
}
|