This repository has been archived on 2022-06-22. You can view files and clone it, but cannot push or open issues or pull requests.
usaco-guide/gatsby-ssr.js
2020-06-27 15:00:00 -07:00

7 lines
312 B
JavaScript

// This file shouldn't be necessary, but for some reason Gatsby is not loading
// gatsby-ssr.tsx (note the "x") properly...
module.exports = require('./gatsby-ssr.tsx');
// this line shouldn't be necessary, but for some reason Gatsby does not load
// gatsby-ssr.js without it...
exports.onRenderBody = () => {};