-
Notifications
You must be signed in to change notification settings - Fork 4
/
html.js
45 lines (39 loc) · 1.23 KB
/
html.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
33
34
35
36
37
38
39
40
41
42
43
44
45
import React from 'react';
import Helmet from 'react-helmet';
import { prefixLink } from 'gatsby-helpers';
import { config } from 'config';
const BUILD_TIME = new Date().getTime();
const HTML = (props) => {
const head = Helmet.rewind();
// only include bundle.js if we are running in production mode
// and noProductionJavascript is set as true
let js = <script src={prefixLink(`/bundle.js?t=${BUILD_TIME}`)} />;
if (process.env.NODE_ENV === 'production' && config.noProductionJavascript ) {
js = null;
}
// include link to the css file if we are running in production mode
let css;
if (process.env.NODE_ENV === 'production') {
css = <link rel="stylesheet" href={prefixLink(`/styles.css?t=${BUILD_TIME}`)} />;
}
return (
<html lang="en">
<head>
<meta charSet="utf-8" />
<meta httpEquiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
{head.title.toComponent()}
{head.meta.toComponent()}
{css}
</head>
<body>
<div id="react-mount" dangerouslySetInnerHTML={{ __html: props.body }} />
{js}
</body>
</html>
);
};
export default HTML;