Files
unicorn-utterances/gatsby-config.js
Corbin Crutchley 42c20fa673 WIP add style
2019-06-13 22:51:42 -07:00

98 lines
2.3 KiB
JavaScript

module.exports = {
siteMetadata: {
title: `Unicorn Utterances`,
description: `Learning programming from magically majestic words`,
siteUrl: `https://unicorn-utterances.com/`
},
plugins: [
{
resolve: `gatsby-source-filesystem`,
options: {
path: `${__dirname}/content/blog`,
name: `blog`,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
path: `${__dirname}/content/assets`,
name: `assets`,
},
},
`gatsby-transformer-json`,
{
resolve: `gatsby-source-filesystem`,
options: {
path: `./src/data`,
},
},
{
resolve: `gatsby-plugin-prefetch-google-fonts`,
options: {
fonts: [
{
family: `Archivo`,
variants: [`400`, `700`],
subsets: [`latin`]
},
],
},
},
{
resolve: `gatsby-transformer-remark`,
options: {
plugins: [
{
resolve: `gatsby-remark-images`,
options: {
maxWidth: 590,
},
},
{
resolve: `gatsby-remark-responsive-iframe`,
options: {
wrapperStyle: `margin-bottom: 1.0725rem`,
},
},
`gatsby-remark-prismjs`,
`gatsby-remark-copy-linked-files`,
`gatsby-remark-smartypants`,
],
},
},
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
{
resolve: `gatsby-plugin-google-analytics`,
options: {
//trackingId: `ADD YOUR TRACKING ID HERE`,
},
},
`gatsby-plugin-feed`,
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `Unicorn Utterances`,
short_name: `Unicorn Utterances`,
start_url: `/`,
background_color: `#ffffff`,
theme_color: `#127db3`,
display: `minimal-ui`,
icon: `content/assets/unicorn-utterances-logo-512.png`,
},
},
`gatsby-plugin-offline`,
`gatsby-plugin-react-helmet`,
{
resolve: `gatsby-plugin-typography`,
options: {
pathToConfigModule: `src/utils/typography`,
},
},
],
mapping: {
"MarkdownRemark.frontmatter.author": `AuthorsJson`,
"AuthorsJson.pronouns": `PronounsJson`
},
}