-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
50 lines (50 loc) · 1.08 KB
/
gatsby-config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
module.exports = {
siteMetadata: {
title: `Brandon Williams`,
description: `A portfolio site created for documenting all there is to know.`,
author: `@krampus-nuggets`,
siteUrl: `https://github.com/krampus-nuggets`,
},
plugins: [
`gatsby-plugin-react-helmet`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `content`,
path: `${__dirname}/src/content`,
},
},
`gatsby-transformer-remark`,
{
resolve: `gatsby-transformer-sharp`,
icon: `./src/img/wma-icon.png`
},
`gatsby-transformer-yaml`,
{
resolve: `gatsby-source-filesystem`,
options: {
path: `${__dirname}/src/data`,
},
},
`gatsby-plugin-sharp`,
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `brandon-williams`,
short_name: `bwilliams`,
start_url: `/`,
background_color: `#663399`,
display: `minimal-ui`,
icon: `./src/img/wma-icon.png`,
},
},
{
resolve: 'gatsby-plugin-robots-txt',
options: {
configFile: `${__dirname}/robots-txt.config.js`
}
},
`gatsby-plugin-styled-components`,
`gatsby-plugin-postcss`,
],
}