-
Notifications
You must be signed in to change notification settings - Fork 1
/
gatsby-config.js
123 lines (121 loc) · 3.3 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
module.exports = {
/* Your site config here */
siteMetadata: {
title: "Island Horizons",
language: "English",
description:
"An Animal Crossing New Horizons blog providing tips and tricks for making your island a better place!",
keywords: [
"Animal Crossing New Horizons blog",
"Island Horizons",
"Island Horizons Animal Crossing",
"Animal Crossing blog",
"Animal Crossing blog new horizons",
"animal crossing switch",
"animal crossing new horizons price",
"animal crossing new horizons guide",
"acnh island ideas",
"acnh guidebook",
"acnh guide",
"animal crossing guide",
"help with animal crossing",
"help with animal crossing new horizons",
"animal crossing info",
"animal crossing price list",
"animal crossing price guide",
"animal crossing price of fish",
"animal crossing price guide",
"animal crossing advice",
"animal crossing new horizons advice",
"animal crossing fan-site",
"new horizons guide",
"new horizons blog",
"new horizons fan-site",
"new horizons starting guide",
"tips for animal crossing",
"starting out in animal crossing new horizons",
"new horizons starting guide",
"animal crossing starting guide",
"animal crossing starting tips",
"tips for animal crossing",
"tips and tricks animal crossing",
],
siteUrl: "https://www.islandhorizons.com",
author: "Brandi Mummery",
},
plugins: [
{
resolve: `gatsby-plugin-sitemap`,
options: {
exclude: ["/critters/time/", "/critters/month/", "/critters/", "/404"],
},
},
{
resolve: "gatsby-plugin-robots-txt",
options: {
host: "https://www.islandhorizons.com",
sitemap: "https://www.islandhorizons.com/sitemap.xml",
policy: [
{
userAgent: "*",
allow: "/",
disallow: ["/critters/critters"],
},
],
},
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: "Island Horizons",
short_name: "Island Horizons",
start_url: "/",
background_color: "#7cbc9b",
theme_color: "#adacac",
display: "browser",
icon: "static/icon.png",
crossOrigin: `use-credentials`,
},
},
{
resolve: "gatsby-plugin-google-analytics",
options: {
trackingId: process.env.GOOGLE_ANALYTICS_TRACKING_ID || "none",
head: true,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
path: `${__dirname}/src/Images`,
name: "Images",
},
},
"gatsby-plugin-react-helmet",
{
resolve: "gatsby-source-contentful",
options: {
spaceId: process.env.CONTENTFUL_SPACE_ID,
accessToken: process.env.CONTENTFUL_ACCESS_TOKEN,
},
},
"gatsby-plugin-sass",
`gatsby-plugin-sharp`,
`gatsby-transformer-sharp`,
{
resolve: "gatsby-transformer-remark",
options: {
plugins: [
"gatsby-remark-relative-images",
{
resolve: "gatsby-remark-images",
options: {
maxWidth: 750,
linkImagesToOriginal: false,
},
},
],
},
},
],
}