57 lines
1.3 KiB
JavaScript
57 lines
1.3 KiB
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-react-helmet`,
|
|
`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,
|
|
},
|
|
},
|
|
{
|
|
resolve: `gatsby-remark-prismjs`,
|
|
options: {
|
|
classPrefix: "highlight-",
|
|
inlineCodeMarker: null,
|
|
aliases: {},
|
|
showLineNumbers: false,
|
|
noInlineHighlight: false,
|
|
languageExtensions: [],
|
|
prompt: {
|
|
user: "root",
|
|
host: "localhost",
|
|
global: false,
|
|
},
|
|
escapeEntities: {},
|
|
},
|
|
},
|
|
],
|
|
},
|
|
}
|
|
],
|
|
}
|