-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
41 lines (41 loc) · 1.02 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
module.exports = {
siteMetadata: {
title: "Will Griffiths | Front End Developer Brisbane",
author: "Will Griffiths",
email: "[email protected]",
tagline: "Front end React developer building things in Brisbane Australia.",
siteURL: "willgriffiths.github.io",
githubUsername: "willgriffiths"
},
plugins: [
"gatsby-plugin-react-helmet",
"gatsby-plugin-styled-components",
{
resolve: "gatsby-plugin-eslint-v2",
options: {
test: /\.js$|\.jsx$/,
exclude: /(node_modules|cache|public)/,
options: {
emitWarning: true,
failOnError: false
}
}
},
{
resolve: "gatsby-source-filesystem",
options: {
path: `${__dirname}/src/pages`,
name: "markdown-pages"
}
},
"gatsby-transformer-remark",
{
resolve: "gatsby-plugin-google-fonts",
options: {
fonts: [
"source sans pro:400,700,600i" // you can also specify font weights and styles
]
}
}
]
};