forked from bgoonz/BGOONZ_BLOG_2.0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-ssr.js
32 lines (29 loc) · 1.27 KB
/
gatsby-ssr.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/**
* Implement Gatsby's SSR (Server Side Rendering) APIs in this file.
*
* See: https://www.gatsbyjs.org/docs/ssr-apis/
*/
const React = require('react');
const withPrefix = require('./src/utils/withPrefix').default;
exports.onRenderBody = function ({ setHeadComponents, setPostBodyComponents }) {
setHeadComponents([]);
setPostBodyComponents([
<React.Fragment>
<script src={withPrefix('js/algolia.js')} />
<script src={withPrefix('js/analytics.js')} />
<script src={withPrefix('js/blm.js')} />
<script src={withPrefix('js/goog-search.js')} />
<script src={withPrefix('js/main.js')} />
<script src={withPrefix('js/netlify-identity.js')} />
<script src={withPrefix('js/page-load.js')} />
<script src={withPrefix('js/page-unload.js')} />
<script src={withPrefix('js/plugins.js')} />
<script src={withPrefix('js/prettier.js')} />
<script src={withPrefix('js/prism.js')} />
<script src={withPrefix('js/searchbar.js')} />
<script src={withPrefix('js/search-create.js')} />
<script src={withPrefix('js/syntax.js')} />
<script src={withPrefix('js/ukraine.js')} />
</React.Fragment>
]);
};