-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
55 lines (54 loc) · 1.32 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
/**
* Configure your Gatsby site with this file.
*
* See: https://www.gatsbyjs.org/docs/gatsby-config/
*/
module.exports = {
siteMetadata: {
title: "Sudin's Portfolio",
description: "This is Sudin's Portfolio Website",
author: "@sudeen",
twitterUsername: "@sudin_ranjitkar",
image: "/sudeen.png",
siteUrl: "https://sudin-portfolio.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:1338`,
queryLimit: 1000, // Default to 100
// contentTypes : `jobs`, `projects`, `blogs`,
// singleType : `about`
// ONLY ADD TO ARRAY IF YOU HAVE DATA IN STRAPI !!!!
contentTypes: [`jobs`, `projects`, `blogs`],
singleTypes: [`about`],
},
},
{
resolve: `gatsby-plugin-webfonts`,
options: {
fonts: {
google: [
{
family: "Roboto",
variants: ["400", "700"],
},
{ family: "Open Sans" },
],
},
},
},
],
}