-
Notifications
You must be signed in to change notification settings - Fork 86
Expand file tree
/
Copy pathgatsby-config.js
More file actions
executable file
·55 lines (54 loc) · 1.33 KB
/
Copy pathgatsby-config.js
File metadata and controls
executable file
·55 lines (54 loc) · 1.33 KB
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
/**
* Configure your Gatsby site with this file.
*
* See: https://www.gatsbyjs.org/docs/gatsby-config/
*/
module.exports = {
siteMetadata: {
title: "WebDev Portfolio",
description: "This is WebDev Portfolio Site",
author: "@webdev",
twitterUsername: "@john_smilga",
image: "/twitter-img.png",
siteUrl: "https://testing-strapi-gatsby-build.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, // Default to 100
// contentTypes : `jobs`, `projects`, `blogs`,
// singleType : `about`
// ONLY ADD TO ARRAY IF YOU HAVE DATA IN STRAPI !!!!
contentTypes: [],
singleTypes: [],
},
},
// {
// resolve: `gatsby-plugin-webfonts`,
// options: {
// fonts: {
// google: [
// {
// family: "Roboto",
// variants: ["400", "700"],
// },
// { family: "Open Sans" },
// ],
// },
// },
// },
],
}