-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgatsby-config.js
61 lines (61 loc) · 1.31 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
module.exports = {
siteMetadata: {
name: "Amorpheuz's Portfolio",
description: "A blog and portfolio site for Yash Dave",
keywords: [
"tech",
"blog",
"frontend developer",
"data scientist",
"frontend dev",
"amorpheuz",
"yash dave",
"react dev",
"javascript dev",
],
siteUrl: "https://amorpheuz.dev",
siteImage: "images/favicon-128x128.png",
profileImage: `images/favicon-64x64.png`,
lang: `en`,
config: {
sidebarWidth: 280,
},
},
plugins: [
{
resolve: "@pauliescanlon/gatsby-theme-terminal",
options: {
source: ["posts", "projects"],
},
},
{
resolve: `gatsby-plugin-canonical-urls`,
options: {
siteUrl: `https://amorpheuz.dev`,
},
},
{
resolve: `gatsby-plugin-sitemap`,
options: {
exclude: [`/404`, `/dummy-page/`, `/dev-404-page/`, `/404.html`],
createLinkInHead: true,
},
},
{
resolve: "gatsby-plugin-robots-txt",
options: {
policy: [
{ userAgent: "*", disallow: ["/404", "/dummy-page/"], allow: ["/"] },
],
},
},
{
resolve: `gatsby-plugin-subfont`,
options: {
silent: true,
fallbacks: false,
inlineFonts: true,
},
},
],
};