25 lines
503 B
JavaScript
25 lines
503 B
JavaScript
module.exports = {
|
|
plugins: [
|
|
{
|
|
resolve: `gatsby-theme-blog`,
|
|
options: {},
|
|
},
|
|
],
|
|
// Customize your site metadata:
|
|
siteMetadata: {
|
|
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/kenneth_chau`,
|
|
},
|
|
{
|
|
name: `github`,
|
|
url: `https://github.com/kenotron`,
|
|
},
|
|
],
|
|
},
|
|
}
|