forked from bgoonz/BGOONZ_BLOG_2.0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-ssr.js
31 lines (24 loc) · 948 Bytes
/
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
/**
* 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/plugins.js')} />
<script src={withPrefix('js/main.js')} />
<script src={withPrefix('js/page-load.js')} />
<script src={withPrefix('js/page-unload.js')} />
<script src={withPrefix('js/blm.js')} />
<script src={withPrefix('js/addthis.js')} />
<script src={withPrefix('js/google-search.js')} />
<script src={withPrefix('js/algolia.js')} />
<script src={withPrefix('js/prism.js')} />
</React.Fragment>
]);
};