remove console log

This commit is contained in:
Austin Green 2017-10-22 09:57:08 -04:00
parent b0817bfc1f
commit 36fa33f6ea

View file

@ -29,7 +29,6 @@ exports.createPages = ({ boundActionCreators, graphql }) => {
return Promise.reject(result.errors);
}
result.data.allMarkdownRemark.edges.forEach(({ node }) => {
console.log(node);
createPage({
path: node.frontmatter.path,
component: path.resolve(`src/templates/${String(node.frontmatter.templateKey)}.js`),