-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-ssr.js
23 lines (21 loc) · 1.05 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
/**
* Implement Gatsby's SSR (Server Side Rendering) APIs in this file.
*
* See: https://www.gatsbyjs.org/docs/ssr-apis/
*/
// You can delete this file if you're not using it
const React = require("react")
exports.onRenderBody = ({setPostBodyComponents}) => {
setPostBodyComponents([
<script type="text/javascript" src={"jquery.min.js"}/>,
<script type="text/javascript" src={"bootstrap.bundle.min.js"} />,
<script type="text/javascript" src={"isotope.pkgd.min.js"} />,
<script type="text/javascript" src={"jquery.waypoints.min.js"} />,
<script type="text/javascript" src={"jquery.counterup.min.js"} />,
<script type="text/javascript" src={"imagesloaded.pkgd.min.js"} />,
<script type="text/javascript" src={"owl.carousel.min.js"} />,
<script type="text/javascript" src={"jquery.magnific-popup.min.js"}/>,
<script type="text/javascript" src={"plugins.js"} />,
<script type="text/javascript" src={"main.min.js"} />
]);
};