Obviously, that's not an easy task, as the only thing that changes in the html.js
template file by default are the head meta tags and the content.
The meta tags are handled by the Helmet component ({head.title.toComponent()}
and {head.meta.toComponent()}
) and the HTML changes inside the template are managed by React. (<div id="react-mount" dangerouslySetInnerHTML={{ __html: this.props.body }} />
)
The body tag however is outside the scope of React, which is why I can't figure out how to change it on-the-fly when I navigate from page to page. That's exactly what I'd need though as I wanna apply a different body background to each page.
I know that I could solve this by using the exports.onRouteUpdate
in gatsby-browser.js
, but I would like the class to be present even if JS is disabled in the browser. Means I'd like it to be there even if I export without the bundle.js
file, just generating the static site HTML.