Gatsby Server Rendering APIs
Usage
Implement any of these APIs by exporting them from a file named gatsby-ssr.js in the root of your project.
APIs
Reference
onPreRenderHTML Function
(apiCallbackContext: object, pluginOptions: pluginOptions) => undefinedonPreRenderHTML FunctionCalled after every page Gatsby server renders while building HTML so you can
replace head components to be rendered in your html.js. This is useful if
you need to reorder scripts or styles added by other plugins.
Parameters
- destructured object- pathnamestring- The pathname of the page currently being rendered. 
- getHeadComponentsReactNode[]- Returns the current - headComponentsarray.
- replaceHeadComponentsfunction- Takes an array of components as its first argument which replace the - headComponentsarray which is passed to the- html.jscomponent. WARNING if multiple plugins implement this API it’s the last plugin that “wins”.
- getPreBodyComponentsReactNode[]- Returns the current - preBodyComponentsarray.
- replacePreBodyComponentsfunction- Takes an array of components as its first argument which replace the - preBodyComponentsarray which is passed to the- html.jscomponent. WARNING if multiple plugins implement this API it’s the last plugin that “wins”.
- getPostBodyComponentsReactNode[]- Returns the current - postBodyComponentsarray.
- replacePostBodyComponentsfunction- Takes an array of components as its first argument which replace the - postBodyComponentsarray which is passed to the- html.jscomponent. WARNING if multiple plugins implement this API it’s the last plugin that “wins”.
 
- pluginOptionsobject- Object containing options defined in - gatsby-config.js
Example
// Move Typography.js styles to the top of the head section so they're loaded first.
exports.onPreRenderHTML = ({ getHeadComponents, replaceHeadComponents }) => {
  const headComponents = getHeadComponents()
  headComponents.sort((x, y) => {
    if (x.key === 'TypographyStyle') {
      return -1
    } else if (y.key === 'TypographyStyle') {
      return 1
    }
    return 0
  })
  replaceHeadComponents(headComponents)
}onRenderBody Function
(apiCallbackContext: object, pluginOptions: pluginOptions) => undefinedonRenderBody FunctionCalled after every page Gatsby server renders while building HTML so you can
set head and body components to be rendered in your html.js.
Gatsby does a two-pass render for HTML. It loops through your pages first
rendering only the body and then takes the result body HTML string and
passes it as the body prop to your html.js to complete the render.
It’s often handy to be able to send custom components to your html.js.
For example, it’s a very common pattern for React.js libraries that
support server rendering to pull out data generated during the render to
add to your HTML.
Using this API over replaceRenderer is preferable as
multiple plugins can implement this API where only one plugin can take
over server rendering. However, if your plugin requires taking over server
rendering then that’s the one to
use
Parameters
- destructured object- pathnamestring- The pathname of the page currently being rendered. 
- setHeadComponentsfunction- Takes an array of components as its first argument which are added to the - headComponentsarray which is passed to the- html.jscomponent.
- setHtmlAttributesfunction- Takes an object of props which will spread into the - <html>component.
- setBodyAttributesfunction- Takes an object of props which will spread into the - <body>component.
- setPreBodyComponentsfunction- Takes an array of components as its first argument which are added to the - preBodyComponentsarray which is passed to the- html.jscomponent.
- setPostBodyComponentsfunction- Takes an array of components as its first argument which are added to the - postBodyComponentsarray which is passed to the- html.jscomponent.
- setBodyPropsfunction- Takes an object of data which is merged with other body props and passed to - html.jsas- bodyProps.
 
- pluginOptionsobject- Object containing options defined in - gatsby-config.js
Example
const { Helmet } = require("react-helmet")
exports.onRenderBody = (
  { setHeadComponents, setHtmlAttributes, setBodyAttributes },
  pluginOptions
) => {
  const helmet = Helmet.renderStatic()
  setHtmlAttributes(helmet.htmlAttributes.toComponent())
  setBodyAttributes(helmet.bodyAttributes.toComponent())
  setHeadComponents([
    helmet.title.toComponent(),
    helmet.link.toComponent(),
    helmet.meta.toComponent(),
    helmet.noscript.toComponent(),
    helmet.script.toComponent(),
    helmet.style.toComponent(),
  ])
}replaceRenderer FunctionSource
(apiCallbackContext: object, pluginOptions: pluginOptions) => undefinedreplaceRenderer FunctionReplace the default server renderer. This is useful for integration with Redux, css-in-js libraries, etc. that need custom setups for server rendering.
Parameters
- destructured object- pathnamestring- The pathname of the page currently being rendered. 
- replaceBodyHTMLStringfunction- Call this with the HTML string you render. WARNING if multiple plugins implement this API it’s the last plugin that “wins”. TODO implement an automated warning against this. 
- setHeadComponentsfunction- Takes an array of components as its first argument which are added to the - headComponentsarray which is passed to the- html.jscomponent.
- setHtmlAttributesfunction- Takes an object of props which will spread into the - <html>component.
- setBodyAttributesfunction- Takes an object of props which will spread into the - <body>component.
- setPreBodyComponentsfunction- Takes an array of components as its first argument which are added to the - preBodyComponentsarray which is passed to the- html.jscomponent.
- setPostBodyComponentsfunction- Takes an array of components as its first argument which are added to the - postBodyComponentsarray which is passed to the- html.jscomponent.
- setBodyPropsfunction- Takes an object of data which is merged with other body props and passed to - html.jsas- bodyProps.
 
- pluginOptionsobject- Object containing options defined in - gatsby-config.js
Example
// From gatsby-plugin-glamor
const { renderToString } = require("react-dom/server")
const inline = require("glamor-inline")
exports.replaceRenderer = ({ bodyComponent, replaceBodyHTMLString }) => {
  const bodyHTML = renderToString(bodyComponent)
  const inlinedHTML = inline(bodyHTML)
  replaceBodyHTMLString(inlinedHTML)
}wrapPageElement FunctionSource
(apiCallbackContext: object, pluginOptions: pluginOptions) => ReactNodewrapPageElement FunctionAllow a plugin to wrap the page element.
This is useful for setting wrapper component around pages that won’t get unmounted on page change. For setting Provider components use wrapRootElement.
Parameters
- destructured object- elementReactNode- The “Page” React Element built by Gatsby. 
- propsobject- Props object used by page. 
 
- pluginOptionsobject- Object containing options defined in - gatsby-config.js
Return value
 ReactNode
Wrapped element
Example
const React = require("react")
const Layout = require("./src/components/layout").default
exports.wrapPageElement = ({ element, props }) => {
  // props provide same data to Layout as Page element will get
  // including location, data, etc - you don't need to pass it
  return <Layout {...props}>{element}</Layout>
}wrapRootElement FunctionSource
(apiCallbackContext: object, pluginOptions: pluginOptions) => ReactNodewrapRootElement FunctionAllow a plugin to wrap the root element.
This is useful to setup any Providers component that will wrap your application. For setting persistent UI elements around pages use wrapPageElement.
Parameters
- destructured object- elementReactNode- The “Root” React Element built by Gatsby. 
 
- pluginOptionsobject- Object containing options defined in - gatsby-config.js
Return value
 ReactNode
Wrapped element
Example
const React = require("react")
const { Provider } = require("react-redux")
const createStore = require("./src/state/createStore")
const store = createStore()
exports.wrapRootElement = ({ element }) => {
  return (
    <Provider store={store}>
      {element}
    </Provider>
  )
}