-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
99 lines (99 loc) · 3.21 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
module.exports = {
siteMetadata: {
// Used for the title template on pages other than the index site
siteTitle: `Lestley Gabo Portfolio`,
// Default title of the page
siteTitleAlt: `Lestley Gabo Portfolio`,
// Will be used to generate absolute URLs for og:image, sitemap, etc.
siteUrl: `https://lestley.com/`,
// Used for SEO
siteDescription: `A software developer portfolio.`,
// Will be set on the <html /> tag
siteLanguage: `en`,
// Used for og:image and must be placed inside the `static` folder
siteImage: `/lestley.jpg`,
// Twitter Handle
author: `Lestley`,
// Navigation links
navigation: [
{
title: `Projects`,
slug: `/`,
},
{
title: `About`,
slug: `/about`,
},
{
title: `Contact`,
slug: `/contact`,
},
],
externalLinks: [
{
name: `linkedin`,
url: `https://www.linkedin.com/in/lestgabo/`,
},
{
name: `github`,
url: `https://github.com/lestgabo`,
},
{
name: `twitter`,
url: `https://twitter.com/lestgabo`,
},
{
name: `instagram`,
url: `https://www.instagram.com/lestgabo/`,
},
],
},
plugins: [
{
resolve: `@tacogator/gatsby-theme-blog-material-clarisse`,
},
`gatsby-plugin-sitemap`,
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `Clarrise - Example Gatsby blog`,
short_name: `Clarrise - Example Gatsby blog`,
description: `Launch a blog today with Clarrise template. Gatsby starter theme`,
start_url: `/`,
background_color: `#fafafa`,
theme_color: `#00897B`,
display: `standalone`,
icons: [
{
src: `/android-chrome-192x192.png`,
sizes: `192x192`,
type: `image/png`,
},
{
src: `/android-chrome-512x512.png`,
sizes: `512x512`,
type: `image/png`,
},
],
},
},
`gatsby-plugin-sharp`,
{
resolve: `gatsby-transformer-remark`,
options: {
plugins: [
{
resolve: `gatsby-remark-images`,
options: {
// It's important to specify the maxWidth (in pixels) of
// the content container as this plugin uses this as the
// base for generating different widths of each image.
maxWidth: 1232,
quality: 90,
},
},
],
},
},
],
};