39 lines
790 B
JavaScript
39 lines
790 B
JavaScript
/**
|
|
* Configure your Gatsby site with this file.
|
|
*
|
|
* See: https://www.gatsbyjs.org/docs/gatsby-config/
|
|
*/
|
|
|
|
module.exports = {
|
|
/* Your site config here */
|
|
siteMetadata: {
|
|
title: `Ben Ramey's Blog`,
|
|
tagline: `Scripture, programming problems, solutions and stories.`
|
|
},
|
|
plugins: [
|
|
`gatsby-plugin-sass`,
|
|
{
|
|
resolve: `gatsby-source-filesystem`,
|
|
options: {
|
|
name: `posts`,
|
|
path: `${__dirname}/src/posts`,
|
|
},
|
|
},
|
|
`gatsby-transformer-sharp`,
|
|
`gatsby-plugin-sharp`,
|
|
{
|
|
resolve: `gatsby-transformer-remark`,
|
|
options: {
|
|
plugins: [
|
|
{
|
|
resolve: `gatsby-remark-images`,
|
|
options: {
|
|
maxWidth: 800,
|
|
},
|
|
},
|
|
],
|
|
},
|
|
}
|
|
],
|
|
}
|