-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
47 lines (46 loc) · 1.1 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
/**
* Configure your Gatsby site with this file.
*
* See: https://www.gatsbyjs.com/docs/gatsby-config/
*/
module.exports = {
/* Your site config here */
siteMetadata: {
title: "Portfolio",
description: "This is Portfolio Site",
author: "@portfolio",
twitterUsername: "@yourtwitter",
image: "/hero-img.png",
siteUrl: "https://gatsby-strapi-portfolio-project-live.netlify.app",
},
plugins: [
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
`gatsby-source-strapi`,
`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: 2000, // Default to 100
contentTypes: [`jobs`, `projects`, `blogs`],
singleTypes: [`about`],
},
},
{
resolve: `gatsby-plugin-google-fonts`,
options: {
fonts: [`Roboto`, `400`, `700`],
display: "swap",
},
},
],
}