-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
44 lines (44 loc) · 1.01 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
module.exports = {
plugins: [{
resolve: `gatsby-plugin-manifest`,
options: {
name: 'Shreyansh Saurabh',
short_name: 'Shreyansh Saurabh',
start_url: '/',
background_color: '#000000',
theme_color: '#ffffff',
display: 'standalone',
icon: './logo.svg',
},
},
{
resolve: 'gatsby-plugin-html-attributes',
options: {
lang: 'en'
}
},
{
resolve: 'gatsby-plugin-netlify',
},
{
resolve:`gatsby-plugin-sitemap`
},
{
resolve : 'gatsby-plugin-postcss',
},
{
resolve: 'gatsby-plugin-robots-txt',
options: {
host: 'https://www.shreyanshsaurabh.com',
sitemap: 'https://www.shreyanshsaurabh.com/sitemap-0.xml',
policy: [{userAgent: '*', allow: '/'}]
}
}
],
siteMetadata: {
title: "Shreyansh Saurabh",
description: "FullStack Developer : Portfolio site",
image: `/logo.webp`,
siteUrl: `https://www.shreyanshsaurabh.com/`,
},
}