netlify cms

This commit is contained in:
Ken
2019-08-16 07:54:34 -07:00
parent ae34d3aa28
commit 22007b8d29
9 changed files with 1960 additions and 123 deletions
+15 -5
View File
@@ -4,20 +4,30 @@ module.exports = {
resolve: `gatsby-theme-blog`,
options: {},
},
{
resolve: `gatsby-plugin-netlify-cms`,
options: {
/**
* One convention is to place your Netlify CMS customization code in a
* `src/cms` directory.
*/
modulePath: `${__dirname}/src/cms/cms.js`,
},
},
],
// Customize your site metadata:
siteMetadata: {
title: `My Blog Title`,
author: `My Name`,
description: `My site description...`,
title: `Crash Test Dev`,
author: `Ken Chau`,
description: `Why do I need a description. For a site. The site IS a description.`,
social: [
{
name: `twitter`,
url: `https://twitter.com/gatsbyjs`,
url: `https://twitter.com/kenneth_chau`,
},
{
name: `github`,
url: `https://github.com/gatsbyjs`,
url: `https://github.com/kenotron`,
},
],
},