├── .babelrc ├── .gitignore ├── .npmignore ├── README.md ├── index.js ├── package.json └── src ├── gatsby-browser.js └── gatsby-ssr.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015", "react"] 3 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toriihq/gatsby-plugin-intercom-spa/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toriihq/gatsby-plugin-intercom-spa/HEAD/.npmignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toriihq/gatsby-plugin-intercom-spa/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | // noop 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toriihq/gatsby-plugin-intercom-spa/HEAD/package.json -------------------------------------------------------------------------------- /src/gatsby-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toriihq/gatsby-plugin-intercom-spa/HEAD/src/gatsby-browser.js -------------------------------------------------------------------------------- /src/gatsby-ssr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toriihq/gatsby-plugin-intercom-spa/HEAD/src/gatsby-ssr.js --------------------------------------------------------------------------------