-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
64 lines (63 loc) · 1.54 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
const config= require('./src/config')
module.exports = {
siteMetadata: {
title: `Matt Cacho`,
titleTemplate: `%s's website`,
description: `This is Matt Cacho's portfolio website.`,
image: `/home.png`,
siteUrl: `https://www.mattcacho.com`,
twitterUsername: `@MattCacho`
},
plugins: [
`gatsby-plugin-postcss`,
`gatsby-plugin-react-helmet`,
`gatsby-plugin-image`,
`gatsby-plugin-sharp`,
`gatsby-plugin-mdx`,
`gatsby-transformer-sharp`,
`gatsby-plugin-anchor-links`,
{
resolve: `gatsby-plugin-react-svg`,
options: {
rule: {
include: `${__dirname}/content/images/svg`
}
}
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `sections`,
path: `${__dirname}/content/sections`
}
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `content`,
path: `${__dirname}/content`
}
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `experience`,
path: `${__dirname}/content/sections/experience`
}
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `experience`,
path: `${__dirname}/static`
}
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `projects`,
path: `${__dirname}/content/sections/projects`
}
}
]
}