-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
37 lines (37 loc) · 892 Bytes
/
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
module.exports = {
siteMetadata: {
title: 'Keremcan Buyuktaskin Portfolio',
description: 'My portfolio built with Gatsby.',
author: 'Keremcan Buyuktaskin',
siteUrl: 'https://keremcanb.netlify.app/'
},
plugins: [
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
`gatsby-plugin-react-helmet`,
`gatsby-plugin-sitemap`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `assets`,
path: `${__dirname}/src/assets/`
}
},
{
resolve: `gatsby-source-strapi`,
options: {
apiURL: `http://localhost:1337`,
queryLimit: 1000,
contentTypes: [`jobs`, `projects`, `blogs`],
singleTypes: [`about`]
}
},
{
resolve: `gatsby-plugin-google-fonts`,
options: {
fonts: [`Roboto\:400,700`, `Open Sans`],
display: 'swap'
}
}
]
};