-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
38 lines (35 loc) · 906 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
38
// @ts-check
module.exports = {
pathPrefix: "/",
siteMetadata: {
title: "Listed",
siteUrl: "https://listed.design"
},
plugins: [
{
resolve: "gatsby-source-contentful",
/* Revoke this token and create a new one through an env variable when finished */
options: {
spaceId: `mxz8f4tr5n6u`,
accessToken: `d2462b5dba8a51ce5d581b41eb730a7b454378c49404aab77a2dbcf0abae0a88`
}
},
"gatsby-plugin-typescript",
"gatsby-plugin-styled-components",
"gatsby-plugin-sitemap",
"gatsby-plugin-robots-txt",
{
resolve: `gatsby-plugin-manifest`,
options: {
name: "Listed",
short_name: "Listed",
start_url: "/",
background_color: "#FFFFFF",
theme_color: "#FFFFFF",
display: "standalone",
icon: "src/images/listed-icon.png"
}
},
"gatsby-plugin-netlify"
]
};