From 2afbf6a136ef294afd3f09899c6f51b8217ab964 Mon Sep 17 00:00:00 2001 From: Kyle Mathews Date: Sat, 7 May 2016 22:15:42 -0700 Subject: [PATCH] Add cache buster to bundle.js --- html.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/html.js b/html.js index d6a38c0..b6f64a7 100644 --- a/html.js +++ b/html.js @@ -1,7 +1,9 @@ import React from 'react' import DocumentTitle from 'react-document-title' import { prefixLink } from 'gatsby-helpers' -const TypographyStyle = require('utils/typography').TypographyStyle +import { TypographyStyle } from 'utils/typography' + +const BUILD_TIME = new Date().getTime() module.exports = React.createClass({ displayName: 'HTML', @@ -32,7 +34,7 @@ module.exports = React.createClass({
-