Files
coolify-examples/node/gatsby/gatsby-ssr.js
Andras Bacsai d3a2a9d83b new examples
2025-12-26 11:40:00 +01:00

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` })
}