diff --git a/.gitignore b/.gitignore index 36c225550e..d8bf214ac5 100644 --- a/.gitignore +++ b/.gitignore @@ -77,6 +77,3 @@ node_modules/ *public/ package.lock.json - -# Local Netlify folder -.netlify diff --git a/.npmignore b/.npmignore new file mode 100644 index 0000000000..e69de29bb2 diff --git a/.npmrc b/.npmrc new file mode 100644 index 0000000000..5d35b284eb --- /dev/null +++ b/.npmrc @@ -0,0 +1 @@ +{ "engines" : { "node" : ">=0.14" } } diff --git a/.nvmrc b/.nvmrc new file mode 100644 index 0000000000..94188a7483 --- /dev/null +++ b/.nvmrc @@ -0,0 +1 @@ +15.0.0 diff --git a/config.yml b/config.yml new file mode 100644 index 0000000000..11b2be0828 --- /dev/null +++ b/config.yml @@ -0,0 +1,3 @@ +backend: + name: git-gateway + branch: master # Branch to update (optional; defaults to master) \ No newline at end of file diff --git a/favicon.ico b/favicon.ico new file mode 100644 index 0000000000..923c76d2fc Binary files /dev/null and b/favicon.ico differ diff --git a/gatsby-node.js b/gatsby-node.js index a1bfac02e7..ea499190fe 100644 --- a/gatsby-node.js +++ b/gatsby-node.js @@ -1,5 +1,11 @@ -/** - * Implement Gatsby's Node APIs in this file. - * - * See: https://www.gatsbyjs.org/docs/node-apis/ - */ +// const path = require('path'); +// +// exports.onCreateWebpackConfig = ({ +// actions +// }) => { +// actions.setWebpackConfig({ +// resolve: { +// modules: [path.resolve(__dirname, 'src'), 'node_modules'] +// } +// }); +// }; diff --git a/gatsby-ssr.js b/gatsby-ssr.js index ac7ae347c6..f8b9b50815 100644 --- a/gatsby-ssr.js +++ b/gatsby-ssr.js @@ -2,36 +2,46 @@ * Implement Gatsby's SSR (Server Side Rendering) APIs in this file. * * See: https://www.gatsbyjs.org/docs/ssr-apis/ + * + *