We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1b03bb commit 6a0682dCopy full SHA for 6a0682d
gatsby-browser.js
@@ -4,4 +4,8 @@
4
* See: https://www.gatsbyjs.org/docs/browser-apis/
5
*/
6
7
-// You can delete this file if you're not using it
+import 'whatwg-fetch'
8
+
9
+export const onClientEntry = () => {
10
+ // export an empty module to make sure the import is used
11
+}
src/components/Meetup.js
@@ -1,7 +1,6 @@
1
import React, { Component } from 'react'
2
import PropTypes from 'prop-types'
3
import format from 'date-fns/format'
-import 'whatwg-fetch'
import { graphql, StaticQuery } from 'gatsby'
const MeetupDescription = ({ name, time, venue }) => (
0 commit comments